-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "react-todo",
"version": "1.0.0",
"description": "react config with webpack",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"dev": "webpack-dev-server --open --config config/webpack.dev.js --progress --inline --colors",
"build": "rimraf dist&&webpack --config config/webpack.prod.js --progress --colors"
},
"repository": {
"type": "git",
"url": "git@github.com:wjf444128852/react-webpack.git"
},
"author": "nine",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZWLTZ/react-todo/issues"
},
"homepage": "https://github.com/ZWLTZ/react-todo.git",
"dependencies": {
"lib-flexible": "^0.3.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^5.1.4",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.5",
"rimraf": "^2.6.1",
"style-loader": "^0.14.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.8",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.0"
}
}