-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 855 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "funnel_cake",
"private": true,
"dependencies": {
"@popperjs/core": "^2.11.8",
"autoprefixer": "^10.4.27",
"blacklight-frontend": "^8.4.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"nodemon": "^3.1.14",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"sass": "^1.97.3"
},
"scripts": {
"build:css:compile": "sass ./app/assets/stylesheets/application.css.scss:./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"build:css:prefix": "postcss ./app/assets/builds/application.css --use=autoprefixer --output=./app/assets/builds/application.css",
"build:css": "yarn build:css:compile && yarn build:css:prefix",
"watch:css": "nodemon --watch ./app/assets/stylesheets/ --ext scss --exec \"yarn build:css\""
},
"browserslist": [
"defaults"
]
}