-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.24 KB
/
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
26
27
28
29
30
31
{
"name": "blog.cstef.dev",
"version": "1.0.0",
"description": "",
"scripts": {
"css:dev": "pnpm tailwindcss -i ./styles/main.css -o ./static/css/main.css --watch -m",
"css:build": "pnpm tailwindcss -i ./styles/main.css -o ./static/css/main.css -m",
"zola:dev": "zola serve --fast --store-html --drafts --output-dir public --force",
"zola:dev-local": "../zola/target/debug/zola serve",
"zola:build": "zola build",
"dev": "npm-run-all --parallel css:dev zola:dev",
"dev-local": "npm-run-all --parallel css:dev zola:dev-local",
"build": "npm-run-all css:build zola:build css:minify",
"css:minify": "purgecss --content public/**/*.html --css public/css/main.css --output public/css/main.css",
"serve": "python3 -m http.server 1111 --directory public"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/cli": "^4.0.8",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.5",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"purgecss": "^7.0.2",
"tailwindcss": "^4.0.8"
},
"packageManager": "[email protected]"
}