-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.68 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.68 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
{
"name": "electron-reactjs-template",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist-electron/main.js",
"author": "bin-r00t",
"scripts": {
"dev": "npm-run-all --parallel dev:web dev:start",
"dev:start": "npm-run-all -s tsc:electron dev:electron",
"dev:electron": "cross-env NODE_ENV=development electron .",
"dev:web": "vite",
"tsc:electron": "tsc --project src/controller/tsconfig.json",
"build:web": "tsc -b && vite build",
"lint:web": "eslint .",
"preview:web": "vite preview",
"build:mac": "npm run clear && npm run tsc:electron && npm run build:web && electron-builder --mac --arm64",
"build:win": "npm run clear && npm run tsc:electron && npm run build:web && electron-builder --win --x64",
"build:linux": "npm run clear && npm run tsc:electron && npm run build:web && electron-builder --linux --x64",
"clear": "rimraf dist-electron dist-web dist"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/wicg-file-system-access": "^2023.10.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.13.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3"
}
}