portails/package.json

49 lines
1.9 KiB
JSON
Raw Normal View History

2020-04-15 15:48:16 +02:00
{
2023-05-26 17:44:05 +02:00
"name": "doks",
2023-06-09 19:17:11 +02:00
"version": "1.0.0-beta.2",
2023-05-26 17:44:05 +02:00
"description": "Doks theme",
2023-04-18 15:10:33 +02:00
"main": "index.js",
2020-04-15 15:48:16 +02:00
"scripts": {
2023-05-26 17:44:05 +02:00
"dev": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --baseURL=http://localhost --noHTTPCache",
"dev:gitpod": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0",
2021-09-03 13:42:43 +02:00
"create": "exec-bin node_modules/.bin/hugo/hugo new",
2023-05-26 17:44:05 +02:00
"check": "npm run check:markdown",
"check:scripts": "eslint themes/doks/assets/js",
2023-04-18 15:10:33 +02:00
"check:styles": "stylelint \"themes/doks/assets/scss/**/*.{css,sass,scss}\"",
"check:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"fix:markdown": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
"test": "npm run check",
2023-05-26 17:44:05 +02:00
"build": "exec-bin node_modules/.bin/hugo/hugo --minify",
2023-04-18 15:10:33 +02:00
"preview": "http-server --gzip --brotli --ext=html --cors",
"clean": "npm run clean:build && npm run clean:install",
"clean:build": "shx rm -rf public resources .hugo_build.lock",
"clean:install": "shx rm -rf package-lock.json yarn.lock pnpm-lock.yaml node_modules",
"preinfo": "npm version",
"info": "npm list",
"postinfo": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "shx rm -rf node_modules/.bin/hugo && shx mkdir node_modules/.bin/hugo && shx cp node_modules/gethyas/node_modules/.bin/hugo/* node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md"
2020-04-15 15:48:16 +02:00
},
2023-04-18 15:10:33 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/hyas/doks.git"
},
2023-04-18 15:10:33 +02:00
"keywords": [
"doks",
"hyas",
"hugo"
],
"author": "Henk Verlinde",
"license": "MIT",
"bugs": {
2023-06-09 19:17:11 +02:00
"url": "https://github.com/gethyas/doks/issues"
2023-04-18 15:10:33 +02:00
},
2023-06-09 19:17:11 +02:00
"homepage": "https://github.com/gethyas/doks#readme",
2023-04-18 15:10:33 +02:00
"devDependencies": {
2023-06-09 19:17:11 +02:00
"@hyas/doks-core": "^1.0.0",
2023-04-18 15:10:33 +02:00
"auto-changelog": "^2.4.0",
2023-05-26 17:44:05 +02:00
"shx": "^0.3.4"
2023-06-09 19:17:11 +02:00
},
"packageManager": "pnpm@8.3.1"
2020-04-15 15:48:16 +02:00
}