-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "webpack-bootstrap",
"version": "1.0.0",
"description": "Webpack Bootstrap App Template",
"scripts": {
"build": "webpack --mode=development --progress --hide-modules",
"production": "webpack --mode=production --progress --hide-modules --devtool=source-maps",
"watch": "webpack --mode=development --watch",
"start": "webpack-dev-server --open --mode=development",
"clear": "del-cli dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KapilG93/html-webpack"
},
"keywords": [
"webpack",
"frontend"
],
"author": "Kapil Goshaliya",
"devDependencies": {
"autoprefixer": "^10.4.12",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^2.1.1",
"del-cli": "^3.0.1",
"image-webpack-loader": "^5.1.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^7.0.1",
"sass": "^1.55.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"svg-url-loader": "^2.3.3",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.2",
"jquery": "^3.6.1"
}
}