-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "bulma-docs",
"version": "1.0.1",
"main": "index.html",
"author": "Jeremy Thomas <bbxdesign@gmail.com> (https://jgthms.com)",
"license": "MIT",
"scripts": {
"custom-sass": "sass --style=expanded --load-path=.. --no-source-map _sass/examples/custom.scss assets/css/custom.css",
"website-sass": "sass --style=expanded --load-path=.. --no-source-map website.scss assets/css/website.css",
"minify-sass": "postcss assets/css/website.css --no-map --use cssnano --output assets/css/website.min.css",
"deploy": "npm run website-sass && npm run minify-sass",
"start": "npm run website-sass -- --watch"
},
"devDependencies": {
"@shopify/prettier-plugin-liquid": "^1.10.0",
"prettier": "^3.7.4",
"sass": "^1.94.2"
}
}