forked from Jageshwar01/Digital-Target-Machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 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
{
"name": "shooting-desktop",
"version": "1.0.0",
"main": "dist/electron/main.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"better-sqlite3": "^12.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.12.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"electron-rebuild": "^3.2.9",
"html-webpack-plugin": "^5.6.5",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"wait-on": "^9.0.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"scripts": {
"react-build": "webpack --mode production",
"react-dev": "webpack --mode development --watch",
"electron-dev": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"start": "concurrently \"webpack serve --mode development --port 3000\" \"npm:electron-dev\"",
"build": "npm run react-build && electron-builder"
}
}