-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "webpack template",
"main": "app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:lint": "eslint --format \"node_modules/eslint-friendly-formatter\" . --cache",
"build": "webpack --env production",
"stats": "webpack --env production --profile --json > stats.json",
"start": "nodemon --watch webpack.config.babel.js --watch config --exec \"webpack-dev-server --env development\"",
"serve": "http-server -p 3030 build"
},
"repository": {
"type": "git",
"url": "[email protected]:qincchen/webpack-template.git"
},
"author": "Qin Cheng Chen",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"html-webpack-plugin": "^2.26.0",
"html-webpack-template": "^6.0.0",
"http-server": "^0.9.0",
"inline-manifest-webpack-plugin": "^3.0.1",
"json-loader": "^0.5.4",
"node-sass": "^4.3.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.2.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.1",
"webpack": "^2.2.0-rc.4",
"webpack-dev-server": "^2.2.0-rc.0",
"webpack-merge": "^2.4.0"
},
"dependencies": {
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6"
}
}