-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.11 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"ajv": "^6.0.0",
"antd": "^3.10.1",
"axios": "^0.18.0",
"echarts": "^4.4.0",
"echarts-for-react": "^2.0.15-beta.1",
"express": "^4.16.4",
"lodash": "latest",
"moment": "^2.23.0",
"prop-types": "^15.7.2",
"react": "^16.5.2",
"react-color": "^2.17.3",
"react-dom": "^16.5.2",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "set PORT=8050 && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-plugin-import": "^1.10.0"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"import",
{
"libraryName": "antd-mobile",
"style": "css"
}
],
"transform-decorators-legacy"
]
}
}