-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "bootstrap5-webpack-boilerplate",
"version": "1.0.1",
"description": "A simple boilerplate using Bootstrap 5, Webpack and Babel.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --open --config webpack.config.js --mode development",
"images": "node ./bin/images.js"
},
"type": "module",
"author": "Dominik Hanke",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noreading/bootstrap5-webpack-boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.19.0",
"@popperjs/core": "^2.11.5",
"autoprefixer": "^10.4.8",
"babel-loader": "^9.1.0",
"bootstrap": "^5.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.0",
"dotenv-webpack": "^8.0.1",
"fast-glob": "^3.2.12",
"html-webpack-plugin": "^5.5.0",
"mime-types": "^2.1.34",
"mini-css-extract-plugin": "^2.7.2",
"path": "^0.12.7",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.3",
"sass": "^1.67.0",
"sass-loader": "^13.3.2",
"sharp": "^0.32.5",
"style-loader": "^3.3.3",
"trash": "^8.1.1",
"uuid": "^9.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.7.4"
}
}