forked from hiero-ledger/hiero-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 953 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"scripts": {
"clean": "rm -rf public",
"fetch-stats": "node scripts/fetch-repo-stats.mjs",
"start": "TAILWIND_MODE=watch NODE_ENV=development npm-run-all clean prelim:twcss --parallel dev:*",
"build": "NODE_ENV=production npm-run-all clean fetch-stats prelim:twcss prod:*",
"prelim:twcss": "./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./static/css/main.css --jit",
"dev:twcssw": "./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./static/css/main.css --jit -w",
"dev:hugo": "hugo server",
"prod:twcss": "./node_modules/tailwindcss/lib/cli.js -i ./assets/css/main.css -o ./static/css/main.css --jit --minify",
"prod:hugo": "hugo --gc --minify"
},
"devDependencies": {
"autoprefixer": "^10.4.23",
"clipboard": "^2.0.11",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.19"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}