-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 KB
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
{
"name": "201705react",
"version": "1.0.0",
"description": "```\r npm init -y\r ```",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --open",
"build-router": "webpack --config webpack.router.config.js",
"dev-router": "webpack-dev-server --config webpack.router.config.js --open",
"dev-redux": "webpack-dev-server --config webpack.redux.config.js --open",
"dev-product": "webpack-dev-server --config webpack.product.config.js --open",
"dev-animation": "webpack-dev-server --config webpack.animation.config.js --open",
"dev-todos": "webpack-dev-server --config webpack.todos.config.js --open",
"dev-middleware": "webpack-dev-server --config webpack.middleware.config.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhufengnodejs/201705react.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhufengnodejs/201705react/issues"
},
"homepage": "https://github.com/zhufengnodejs/201705react#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"bootstrap": "^3.3.7",
"express": "^4.15.4",
"history": "^4.6.3",
"jquery": "^3.2.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-transition-group": "^1.2.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-logger": "^3.0.6",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0"
}
}