-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "webpack-template",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --content-base ./ --open --inline --hot --compress --config ./webpack-dev.config.js",
"build": "webpack --progress --hide-modules --config ./webpack.config.js"
},
"author": "jeromehan",
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.21.0",
"ejs-loader": "^0.3.0",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.8.5",
"glob": "^6.0.4",
"html-webpack-plugin": "^2.19.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"jsx-loader": "^0.13.2",
"minimist": "^1.2.0",
"node-sass": "^4.9.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"url-loader": "^1.0.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.1.4"
}
}