-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "react2",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "node_modules/.bin/eslint webpack.config.* src tools",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "node_modules/.bin/rimraf ./dist",
"prebuild": "npm-run-all clean-dist lint",
"build": "babel-node tools/build.js"
},
"dependencies": {
"antd": "2.13.6",
"axios": "^0.17.0",
"babel-polyfill": "^6.26.0",
"moment": "^2.22.1",
"prop-types": "^15.6.0",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.14"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-import": "^1.6.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"colors": "^1.1.2",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "4.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-react": "7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1"
}
}