-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "react-webpack-scaffold",
"version": "1.0.0",
"description": "using react with webpack",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --progress --colors --content-base ./build",
"build": "webpack --progress --colors --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucaszhu2zgf/react-webpack-scaffold.git"
},
"keywords": [
"react",
"webpack",
"spa"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaszhu2zgf/react-webpack-scaffold/issues"
},
"homepage": "https://github.com/lucaszhu2zgf/react-webpack-scaffold#readme",
"dependencies": {
"axios": "^0.16.2",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^3.0.5"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-config-react-app": "^2.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"img-loader": "^2.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"react-dev-utils": "^3.1.1",
"react-error-overlay": "^1.0.10",
"sass-loader": "^6.0.6",
"style-ext-html-webpack-plugin": "^3.4.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.7.1"
}
}