forked from kondasoft/ks-bootshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1004 Bytes
/
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
{
"scripts": {
"watch": "npm-watch",
"bs-css": "sass --no-source-map src/bootstrap.scss:assets/bootstrap.css && postcss assets/bootstrap.css --replace --no-map --use autoprefixer",
"bs-js": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js assets/"
},
"watch": {
"bs-css": {
"patterns": [
"src"
],
"extensions": "scss",
"runOnChangeOnly": true
}
},
"dependencies": {
"bootstrap": "^5.1.3"
},
"devDependencies": {
"@types/bootstrap": "^5.1.12",
"autoprefixer": "^10.4.7",
"caniuse-lite": "^1.0.30001346",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"npm-watch": "^0.11.0",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"sass": "^1.52.1"
}
}