-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.95 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
{
"name": "react-electron-browser",
"version": "1.3.0",
"private": false,
"license": "MIT",
"author": {
"name": "Alan Zhao",
"email": "[email protected]",
"url": "https://www.MakerAL.com"
},
"build": {
"appId": "com.my-website.react-electron-browser",
"productName": "ReactElectronBrowser",
"copyright": "Copyright © 2019-2020 ${author}",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.icns",
"target": [
"dir",
"dmg"
]
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"extraResources": [
"resources/**/*"
]
},
"homepage": "./",
"main": "build/electron.js",
"scripts": {
"dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:5000 && cross-env ELECTRON_START_URL=http://localhost:5000 electron .\"",
"start": "cross-env PORT=5000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cover": "yarn test --coverage --watchAll",
"postinstall": "electron-builder install-app-deps",
"package": "yarn build && electron-builder -m"
},
"eslintConfig": {
"extends": "eslint:recommended"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"bootstrap": "^5.1.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"electron": "^13.1.9",
"electron-builder": "^22.11.7",
"node-sass": "^6.0.1",
"typescript": "^4.3.5",
"wait-on": "^6.0.0"
}
}