-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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-bootstrap-boilerplate",
"version": "1.0.0",
"description": "Webpack + Bootstrap 5 Boilerplate",
"scripts": {
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "webpack --progress --config webpack/webpack.prod.js",
"lint:scripts": "eslint \"./src/js/**/*.js\"",
"lint:styles": "stylelint \"./src/scss/**/*.{css,sass,scss}\""
},
"author": "Temattic",
"homepage": "https://temattic.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"handlebars-webpack-plugin": "^2.2.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss-loader": "^7.0.1",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-config-twbs-bootstrap": "^5.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0",
"webpack-remove-empty-scripts": "^0.8.1"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.2.0"
},
"browserslist": [
">= 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"Firefox ESR",
"iOS >= 12",
"Safari >= 12",
"not Explorer <= 11"
]
}