forked from shamin/webpack-sass-bootstrap-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (51 loc) · 1.52 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
{
"name": "webpack-sass-bootstrap",
"version": "1.0.3",
"description": "Webpack-Sass-Bootstrap Boilerplate",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"watch": "webpack --progress --watch --mode=development",
"start": "webpack serve --open --mode=development"
},
"author": "Shamin Meerankutty",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.4",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"html-loader": "^1.3.2",
"mini-css-extract-plugin": "^1.3.5",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"postcss-loader": "^4.2.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"html-webpack-plugin": "^4.5.1"
},
"dependencies": {
"bootstrap": "^4.6.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaminmeerankutty/webpack-sass-bootstrap-boilerplate.git"
},
"bugs": {
"url": "https://github.com/shaminmeerankutty/webpack-sass-bootstrap-boilerplate/issues"
},
"homepage": "https://github.com/shaminmeerankutty/webpack-sass-bootstrap-boilerplate#readme"
}