forked from YCloudYUSA/y_lb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 922 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
{
"name": "y-lb",
"description": "Y LB styles.",
"author": "YMCA Website Services",
"private": true,
"version": "1.0.0",
"scripts": {
"css:compile": "node-sass --include-path node_modules/bootstrap/scss --importer node_modules/node-sass-magic-importer/dist/cli.js ./assets/scss -o ./assets/css",
"css:prefix": "postcss --use autoprefixer -b '> 10%' ./assets/css/*.css -r",
"css:build": "npm run css:compile && npm run css:prefix",
"css:watch": "nodemon -e scss -x \"npm run css:build\" --ignore ./assets/css",
"watch": "nodemon -e scss,js -x \"npm run build\" --ignore ./assets/css",
"build": "npm run css:build"
},
"dependencies": {
"autoprefixer": "^10.4.13",
"bootstrap": "^4.4.1",
"breakpoint-sass": "^2.7.1",
"node-sass": "^7.0.3",
"node-sass-magic-importer": "^5.3.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0"
}
}