-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "ground",
"productName": "Ground Station",
"main": "electron/main.js",
"version": "0.1.0",
"homepage": "./",
"private": true,
"dependencies": {
"electron-is-dev": "^1.2.0",
"express": "^4.17.1",
"influx": "^5.0.0-alpha.4",
"moment": "^2.29.1",
"sequelize": "^6.3.5",
"serialport": "^9.0.1",
"serve-static": "^1.14.1",
"sqlite3": "^5.0.0"
},
"scripts": {
"start-electron": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"build-electron": "mkdir build/src && cp -r electron/. build/electron && cp -r src/shared/. build/src/shared",
"package": "electron-builder build --mac -c.extraMetadata.main=build/electron/main.js --publish never",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"build": {
"files": [
"build/**/*",
"node_modules/**/*"
],
"publish": {
"provider": "github",
"repo": "build",
"owner": "andycate"
}
},
"devDependencies": {
"cross-env": "^7.0.2",
"electron": "^10.1.3",
"electron-builder": "^22.8.1",
"electron-rebuild": "^2.2.0"
}
}