-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sc-next-electron",
"displayName": "Electronjs with Nextjs",
"version": "8.0.0",
"description": "Electronjs with Nextjs",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"author": {
"name": "Saulo Costa",
"email": "saulotarsobc@gmail.com",
"url": "https://github.com/saulotarsobc"
},
"scripts": {
"dev": "npm run build:backend && electron . --dev",
"prebuild": "rimraf build && rimraf dist",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "next build frontend",
"build:backend": "tsc -p backend",
"postinstall": "electron-builder install-app-deps",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@mantine/modals": "^7.12.2",
"@mantine/notifications": "^7.12.2",
"@tabler/icons-react": "^3.17.0",
"app-root-path": "^3.1.0",
"electron-log": "^5.1.5",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"electron": "^30.5.1",
"electron-builder": "^25.0.5",
"next": "^14.2.12",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.7",
"typescript": "^5.6.2"
}
}