-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ens",
"version": "0.1.0",
"private": true,
"main": "main/main.js",
"author": "Harukite",
"description": "Electron + NextJS project",
"scripts": {
"dev": "concurrently -n \"NEXT,ELECTRON\" -c \"yellow,blue\" --kill-others \"next dev\" \"nodemon --watch main --exec electron . --js-flags='--max-old-space-size=2048 --optimize-for-size'\"",
"build": "run-s build:next build:electron",
"start": "next start",
"lint": "next lint",
"build:next": "next build",
"build:electron": "cross-env BUILD_COMPLETE=true electron-builder --config electron-builder.yaml",
"electron": "electron . --js-flags='--max-old-space-size=2048 --optimize-for-size'",
"build:main": "terser main/main.js -o main/main.min.js && terser main/preload.js -o main/preload.min.js",
"generate-icons": "node scripts/generate-icons.js",
"encrypt-asar": "node scripts/encrypt-asar.js"
},
"dependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/register": "^7.25.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"better-sqlite3": "^11.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.0.3",
"electron-serve": "^2.1.1",
"electron-store": "^10.0.0",
"lucide-react": "^0.451.0",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.5",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tailwind-merge": "^2.5.3"
},
"devDependencies": {
"next": "14.2.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"electron-reload": "^2.0.0-alpha.1",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"terser": "^5.34.1",
"typescript": "^5",
"global": "^4.4.0"
}
}