-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.7 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
{
"name": "electron-with-react",
"version": "1.0.0-SNAPSHOT",
"description": "A Eleactron app with react.",
"author": "zhaoxunyong@qq.com",
"main": "./public/electron.js",
"private": true,
"homepage": ".",
"build": {
"mac": {
"category": "demo"
},
"files": [
{
"from": "./",
"to": "./",
"filter": [
"**/*",
"!node_modules"
]
}
],
"directories": {
"buildResources": "public"
}
},
"scripts": {
"start-electron": "NODE_ENV=development electron .",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"packager": "yarn run build && rm -rf dist && electron-builder"
},
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"antd": "^3.15.0",
"axios": "^0.18.0",
"babel-plugin-react-intl": "^3.0.1",
"json-loader": "^0.5.7",
"node-sass": "^4.11.0",
"pubsub-js": "^1.7.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-intl": "^2.8.0",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.8",
"react-transition-group": "^2.6.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.1.3",
"uuid": "^3.3.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}