generated from barbarbar338/electron-react-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 KB
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
{
"private": true,
"name": "tabtub",
"description": "My application description",
"version": "1.0.0",
"author": "Vince Vella <vince@vellapps.com>",
"main": "app/background.js",
"scripts": {
"dev": "concurrently \"esbuild main/preload.ts --external:electron --watch=forever --bundle --minify --sourcemap --outfile=app/preload.js\" \"nextron\" \"node scripts/zombie_killer.js\"",
"build": "nextron build",
"build:next": "next build renderer && next export -o app renderer",
"build:preload": "esbuild main/preload.ts --external:electron --bundle --minify --sourcemap --outfile=app/preload.js",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@types/uuid": "^9.0.1",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"react-error-boundary": "^4.0.3",
"react-icons": "^4.8.0",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.7",
"concurrently": "^8.0.1",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"electron-builder-notarize": "^1.5.1",
"esbuild": "^0.17.14",
"next": "^12.3.4",
"nextron": "^8.5.0",
"node-cron": "^3.0.2",
"pidusage": "^3.0.2",
"postcss": "^8.4.13",
"prettier": "^2.8.7",
"ps-node": "^0.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-scrollbar": "^3.0.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.4"
}
}