-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
72 lines (72 loc) · 2.25 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-starter-kit",
"version": "2.0.0",
"description": "基于webpack2 + ES6/7 + less + React15.5 + Redux3.6 + React-Router4.0 + react-hot-loader3 + antd 的脚手架",
"main": "index.js",
"scripts": {
"dev": "rimraf dist && node server.js",
"test": "cross-env NODE_ENV=test mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"build": "rimraf dist && webpack --progress --colors -p --config webpack.config.production.js"
},
"devDependencies": {
"autoprefixer": "^9.0.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^5.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^11.11.0",
"less": "^3.7.1",
"less-loader": "^4.0.3",
"mocha": "^5.2.0",
"postcss-loader": "^2.1.6",
"react-test-renderer": "^16.4.1",
"rimraf": "^2.6.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"antd": "^3.7.0",
"bundle-loader": "^0.5.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-hot-loader": "^4.3.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songzhengxu/react-starter-kit.git"
},
"author": "宋正旭",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/songzhengxu/react-starter-kit/issues"
},
"homepage": "https://github.com/songzhengxu/react-starter-kit#readme"
}