-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "webpack-boilerplate",
"version": "1.0.0",
"description": "A webpack 4 boilerplate",
"author": "Gustaf Gunér (https://github.com/gustafguner)",
"main": "src/index.js",
"license": "MIT",
"keywords": [
"webpack",
"webpack4",
"babel",
"sass",
"autoprefixer",
"webpack-dev-server"
],
"bugs": {
"url": "https://github.com/gustafguner/webpack-boilerplate/commits/master",
"email": "gustaf@guner.se"
},
"repository": {
"type": "git",
"url": "https://github.com/gustafguner/webpack-boilerplate.git"
},
"scripts": {
"serve": "webpack --mode=development --config ./webpack.config.dev.js && webpack-dev-server --mode=development --config ./webpack.config.dev.js",
"build": "webpack --mode=development --config ./webpack.config.dev.js",
"build:prod": "webpack --mode=production --config ./webpack.config.prod.js"
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.7",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
}
}