-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "bvspca",
"version": "0.1.0",
"dependencies": {
"swiper": "^8.2.4"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"gulp": "^4.0.2",
"gulp-livereload": "^4.0.2",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.1",
"sass-loader": "^13.0.0",
"stylelint": "^14.9.1",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-scss": "^4.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=16"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "npm run clean && webpack --mode=production",
"clean": "rm -rf bvspca/static/dist/*",
"start": "gulp & webpack --watch --devtool=source-map --mode=development",
"test": "jest --watch",
"lint": "eslint bvspca/**/js_src --no-cache",
"slint": "stylelint bvspca/static/sass"
}
}