forked from LANIF-UI/dva-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "dva-boot",
"version": "1.0.0",
"description": "React & DVA Boilerplate",
"main": "index.js",
"repository": "https://github.com/LANIF-UI/dva-boot.git",
"license": "MIT",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": {
"/api": {
"target": "http://locaihost:8888",
"changeOrigin": true,
"pathRewrite": {
"^/api": ""
}
}
},
"dependencies": {
"classnames": "^2.2.5",
"cmn-utils": "^0.1.8",
"dva": "^2.1.0",
"dva-loading": "^1.0.4",
"react": "^16.2.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.2.0",
"react-scripts": "1.0.17"
},
"devDependencies": {
"autodll-webpack-plugin": "^0.3.8",
"babel-plugin-dva-hmr": "^0.4.0",
"babel-plugin-import": "^1.6.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"fetch-mock": "^6.0.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"mockjs": "^1.0.1-beta3",
"react-app-rewire-less-modules": "1.1.0",
"react-app-rewired": "^1.3.8"
}
}