This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.72 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": "vite-electron-builder",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"pretest": "npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,tsx",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer",
"pretypecheck-renderer": "dts-cb -i packages/preload/src/**/*.ts -o packages/preload/exposedInMainWorld.d.ts"
},
"devDependencies": {
"@types/electron-devtools-installer": "2.2.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@vitejs/plugin-react": "^1.1.3",
"cross-env": "7.0.3",
"dts-for-context-bridge": "0.7.1",
"electron": "16.0.5",
"electron-builder": "22.14.5",
"electron-devtools-installer": "3.2.0",
"eslint": "8.5.0",
"eslint-plugin-react": "^7.28.0",
"nano-staged": "0.5.0",
"playwright": "1.17.1",
"simple-git-hooks": "2.7.0",
"typescript": "4.5.4",
"vite": "2.7.7"
},
"dependencies": {
"@typescript-eslint/parser": "^5.8.0",
"electron-updater": "4.6.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1"
}
}