-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "M2PS",
"version": "1.0.0",
"private": true,
"description": "This is used by the new mont organization for simulation",
"author": {
"name": "Boa. Inc.",
"email": "[email protected]"
},
"build": {
"appId": "com.Boanerges.simulator",
"productName": "M2PS",
"target": "NSIS",
"icon": "icon.png",
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"displayLanguageSelector": true,
"allowElevation": true,
"deleteAppDataOnUninstall": true,
"runAfterFinish": true,
"createDesktopShortcut": true,
"shortcutName": "M2PS"
},
"directories": {
"output": "build"
}
},
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.0.11",
"@types/react": "16.8.22",
"@types/react-dom": "16.8.4",
"cross-env": "^5.2.0",
"electron-is-dev": "^1.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"semantic-ui-react": "^0.87.2",
"typescript": "3.5.2"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "npm run react-build && electron-builder --publish=always",
"build": "npm run react-build && npm run electron-build",
"start": "concurrently \"cross-env BROWSER=none npm run react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^4.1.1",
"electron": "^7.2.4",
"electron-builder": "^20.44.4",
"wait-on": "^3.2.0"
}
}