-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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": "webpack-starter",
"version": "1.0.0",
"description": "starter boilerplate",
"scripts": {
"watch": "webpack --mode development --watch",
"start": "webpack serve --no-client-overlay-warnings",
"build": "webpack --mode production && prettier --print-width=120 --parser html --write dist/*.html"
},
"license": "MIT",
"dependencies": {
"normalize.css": "^8.0.1"
},
"browserslist": [
"last 4 versions",
"> 0.5%",
"Firefox ESR",
"not dead"
],
"devDependencies": {
"autoprefixer": "^10.4.16",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss-loader": "^7.3.3",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"terser-webpack-plugin": "^5.3.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}