forked from noreading/bootstrap5-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"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 --config webpack.config.js --mode development --watch",
"images": "node ./bin/images.js"
},
"author": "Dominik Hanke",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noreading/bootstrap5-webpack-boilerplate.git"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@popperjs/core": "^2.11.5",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"bootstrap": "^5.1.3",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"fast-glob": "^3.2.11",
"mime-types": "^2.1.35",
"mini-css-extract-plugin": "^2.6.0",
"path": "^0.12.7",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"sharp": "^0.30.4",
"style-loader": "^3.3.1",
"trash": "^8.1.0",
"uuid": "^8.3.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}