-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "laser-mount-calibration",
"version": "1.0.2",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.9",
"electron-is-dev": "^1.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^3.4.3",
"socket.io-client": "^2.3.0",
"typescript": "^4.0.3"
},
"scripts": {
"dist": "electron-builder -mwl",
"preelectron-pack": "yarn build",
"pack": "electron-builder --dir",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.ondinebio.laser-mount-cal",
"productName": "Laser Mount Calibration",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"devDependencies": {
"@types/socket.io-client": "^1.4.33",
"concurrently": "^5.2.0",
"electron": "^9.1.1",
"electron-builder": "^22.7.0",
"wait-on": "^5.1.0"
}
}