-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (21 loc) · 794 Bytes
/
package.json
File metadata and controls
22 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "bda.plone.shop",
"version": "1.0.0",
"private": true,
"devDependencies": {
"clean-css-cli": "^5.4.0",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"sass": "^1.43.3"
},
"scripts": {
"watch": "nodemon --watch resources/scss/ --ext scss --exec \"npm run css-main\"",
"build": "npm run css-main",
"css-main": "npm-run-all css-compile-main css-minify-main",
"css-compile-main": "sass --load-path=node_modules --style expanded --no-error-css resources/scss/shop.scss:src/bda/plone/shop/browser/static/shop.css",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --output src/bda/plone/shop/browser/static/shop.min.css src/bda/plone/shop/browser/static/shop.css"
},
"dependencies": {
"bootstrap": "^5.3.3"
}
}