-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "dapp-electron",
"description": "ICBT project dapp with electron",
"author": "helloing",
"version": "0.2.7",
"private": true,
"dependencies": {
"bootstrap": "^5.1.1",
"cross-env": "6.0.2",
"dropzone": "^5.9.3",
"electron-is-dev": "1.1.0",
"electron-log": "^3.0.8",
"node-sass": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-bootstrap": "^2.0.0-rc.1",
"react-dom": "^16.14.0"
},
"devDependencies": {
"concurrently": "4.1.2",
"electron": "6.0.11",
"electron-builder": "^21.2.0",
"prettier": "^1.4.4",
"react-scripts": "3.1.2",
"wait-on": "3.3.0"
},
"main": "public/electron.js",
"homepage": "./",
"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": "yarn react-build && electron-builder --publish=always",
"build": "yarn react-build && yarn electron-build",
"build:win32": "yarn react-build && electron-builder --win portable --ia32",
"build:win64": "yarn react-build && electron-builder --win portable --x64",
"build:mac32": "yarn react-build && electron-builder --mac --ia32",
"build:mac64": "yarn react-build && electron-builder --mac --x64",
"start": "concurrently \"cross-env BROWSER=none yarn react-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"
]
}
}