-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 949 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 949 Bytes
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
{
"name": "electron-example",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "concurrently --kill-others \"npm run dev:react\" \"npm run dev:electron\"",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && cross-env NODE_ENV=development electron .",
"build": "tsc && vite build",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json"
},
"dependencies": {
"@trpc/client": "^10.45.2",
"@trpc/server": "^10.45.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"trpc": "^0.11.3"
},
"devDependencies": {
"@types/node": "^22.4.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.4.0",
"typescript": "^5.5.4",
"vite": "^5.4.1"
}
}