-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "webpack4-multipage",
"author": "Roman Slonov",
"version": "2.0.0",
"description": "Simple yet, powerful boilerplate using postcss and webpack 4 for building multi-page websites",
"scripts": {
"build": "webpack --config ./build/webpack.config.prod.js --mode production",
"start": "webpack-dev-server --open --config ./build/webpack.config.dev.js --mode development"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"postcss-reporter": "^6.0.0",
"style-loader": "^0.17.0",
"url-loader": "^1.1.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.1.4"
},
"license": "MIT"
}