-
Notifications
You must be signed in to change notification settings - Fork 445
/
package.json
72 lines (72 loc) · 2.12 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
{
"name": "react-antd-admin",
"version": "1.0.0",
"description": "React Admin Boilerplate, with React + Ant Design",
"author": "jiangxy <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=5.0 <7",
"npm": ">=3.3 <4"
},
"repository": {
"type": "git",
"url": "[email protected]:jiangxy/react-antd-admin.git"
},
"keywords": [
"ant",
"react",
"admin",
"frontend"
],
"devDependencies": {
"antd": "2.7.1",
"babel-core": "^6.21.0",
"babel-eslint": "6.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-import": "1.1.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"compression-webpack-plugin": "0.3.2",
"cross-env": "3.1.4",
"css-loader": "0.23.1",
"eslint": "2.7.0",
"eslint-config-airbnb": "6.x",
"eslint-plugin-react": "4.x",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.28.0",
"less": "2.7.1",
"less-loader": "2.2.3",
"lesshint": "2.0.2",
"react": "15.3.0",
"react-dom": "15.3.0",
"react-hot-loader": "1.3.0",
"react-redux": "4.4.0",
"react-router": "3.0.0",
"redux": "3.6.0",
"redux-logger": "2.7.4",
"redux-thunk": "2.1.0",
"rimraf": "2.5.4",
"strip-loader": "0.1.2",
"style-loader": "0.13.1",
"stylelint": "6.6.0",
"stylelint-config-standard": "9.0.0",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"dependencies": {
"superagent": "2.3.0"
},
"scripts": {
"build": "webpack --progress --colors --display-error-details",
"prod": "cross-env NODE_ENV=production webpack --progress --colors --config webpack.config.prod.js -p --display-error-details",
"clean": "rimraf dist/*bundle* dist/*vendor* dist/*index*",
"dev": "webpack-dev-server --devtool eval --progress --colors --content-base dist --hot --inline --display-error-details",
"eslint": "eslint --ext .js,.jsx src",
"stylelint": "stylelint \"src/**/*.css\"",
"lesshint": "lesshint src/"
}
}