-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "webpack-webapp",
"version": "1.0.0",
"description": "Simple and easy webpack webapp boilerplate",
"main": "main.js",
"repository": "[email protected]:giacomoalonzi/webpack-webapp.git",
"author": "Giacomo Alonzi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && webpack -p",
"start": "rimraf dist && webpack-dev-server --progress --colors"
},
"babel": {
"presets": "es2015"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015-webpack": "^6.4.3",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"browsersync-webpack-plugin": "^0.4.1",
"css-loader": "^0.26.1",
"cssnano": "^3.10.0",
"eslint": "^3.17.1",
"eslint-config-google": "^0.7.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.10.0",
"html-minifier": "^3.4.1",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.2.0",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.4.4",
"node-sass": "^4.5.0",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^1.3.1",
"resolve-url-loader": "^2.0.2",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.5",
"uglifyjs-webpack-plugin": "^0.2.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "^4.0.0"
}
}