-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
27 lines (26 loc) · 1.27 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
{
"name": "bda.plone.cart",
"version": "1.0.0",
"private": true,
"devDependencies": {
"clean-css-cli": "^5.4.0",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.1",
"sass": "^1.43.3",
"stylelint-config-twbs-bootstrap": "^2.2.4"
},
"scripts": {
"watch": "nodemon --watch resources/scss/ --ext scss --exec \"npm run css-main\"",
"build": "npm-run-all css-compile-main css-prefix-main css-minify-main",
"css-main": "npm-run-all css-compile-main css-prefix-main css-minify-main",
"css-compile-main": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/scss/cart.scss:src/bda/plone/cart/browser/static/cart.css",
"css-prefix-main": "postcss --config postcss.config.js --replace \"src/bda/plone/cart/browser/static/*.css\" \"!src/bda/plone/cart/browser/static/*.min.css\"",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output src/bda/plone/cart/browser/static/cart.min.css src/bda/plone/cart/browser/static/cart.css",
"css-lint": "stylelint \"resources/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache"
},
"dependencies": {
"bootstrap": "^5.3.3"
}
}