Files
chill_hugoplate/package.json
2026-01-22 12:53:54 +01:00

21 lines
812 B
JSON

{
"name": "hugo-sassify-theme",
"version": "1.0.0",
"description": "A modern Hugo theme for SaaS websites",
"author": "Chaoming Li",
"license": "MIT",
"scripts": {
"scss": "sass --watch assets/scss/custom.scss:static/css/custom.css",
"start": "concurrently \"npx tailwindcss -i themes/chill-theme/assets/css/main.css -o static/css/style.css --watch\" \"npm run scss -- --watch\" \"hugo server -D\"",
"build": "tailwindcss -i themes/chill-theme/assets/css/main.css -o static/css/style.css --minify && npm run scss && hugo --minify"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.3.5"
}
}