-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "webpack-starter-kit",
"version": "1.0.0",
"description": "",
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"start": "webpack-dev-server --open --mode development"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.5.1",
"glob": "^7.2.0",
"group-css-media-queries-loader": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^3.0.1",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"mini-css-extract-plugin": "^2.4.4",
"postcss-loader": "^6.2.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
}
}