mirror of
https://github.com/zeon-studio/hugoplate.git
synced 2026-09-10 07:06:19 -04:00
34 lines
1.8 KiB
JSON
34 lines
1.8 KiB
JSON
{
|
|
"name": "hugoplate",
|
|
"description": "hugo tailwindcss boilerplate",
|
|
"version": "3.4.5",
|
|
"license": "MIT",
|
|
"author": "zeon.studio",
|
|
"scripts": {
|
|
"dev": "concurrently \"node scripts/themeGenerator.js --watch\" \"hugo server\"",
|
|
"build": "node scripts/themeGenerator.js && hugo --gc --minify --templateMetrics --templateMetricsHints --forceSyncStatic",
|
|
"preview": "node scripts/themeGenerator.js && hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --watch --forceSyncStatic -e production --minify",
|
|
"dev:example": "concurrently \"node scripts/themeGenerator.js --watch\" \"hugo server -s exampleSite\"",
|
|
"build:example": "cd exampleSite && node ../scripts/themeGenerator.js && hugo --gc --minify --templateMetrics --templateMetricsHints --forceSyncStatic",
|
|
"preview:example": "cd exampleSite && node ../scripts/themeGenerator.js && hugo server --disableFastRender --navigateToChanged --templateMetrics --templateMetricsHints --watch --forceSyncStatic -e production --minify",
|
|
"update-modules": "node ./scripts/clearModules.js && hugo mod clean --all && hugo mod get -u ./... && hugo mod tidy",
|
|
"remove-darkmode": "node ./scripts/removeDarkmode.js && yarn format",
|
|
"remove-multilang": "node ./scripts/removeMultilang.js",
|
|
"project-setup": "node ./scripts/projectSetup.js",
|
|
"theme-setup": "node ./scripts/themeSetup.js",
|
|
"update-theme": "node ./scripts/themeUpdate.js",
|
|
"format": "prettier -w ."
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/cli": "^4.2.1",
|
|
"@tailwindcss/forms": "^0.5.11",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"concurrently": "^9.2.1",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-go-template": "0.0.15",
|
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
"tailwind-bootstrap-grid": "^7.0.0",
|
|
"tailwindcss": "^4.2.1"
|
|
}
|
|
}
|