forked from noreading/bootstrap5-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"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.14.6",
"@babel/preset-env": "^7.14.7",
"@popperjs/core": "^2.9.2",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"bootstrap": "^5.0.2",
"css-loader": "^6.0.0",
"dotenv-webpack": "^7.0.2",
"fast-glob": "^3.2.7",
"mime-types": "^2.1.31",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^6.0.0",
"path": "^0.12.7",
"postcss": "^8.3.5",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^5.3.0",
"sass-loader": "^12.1.0",
"sharp": "^0.28.3",
"style-loader": "^2.0.0",
"trash": "^7.1.1",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.0"
}
}