dev.luanti.org/package.json
Mark Wiemer 8b5abbb581
Some checks are pending
Build with Hugo / build (push) Waiting to run
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
Improve DX, add failing a11y tests (#142)
* Add a11y test (failing)

* Test on local build, document scripts, sort package.json

* Update dev guide

* Use local hugo to build site

* Fixup CI pipeline

* Document local vs global Hugo, role of Node

* Use hugo-bin instead of hugo-extended

* Update readme

* Revert "Update readme"

This reverts commit f368bcbb9c.

* Revert "Use hugo-bin instead of hugo-extended"

This reverts commit 618d49d3ca.
2025-01-20 12:40:05 -05:00

23 lines
687 B
JSON

{
"scripts": {
"build": "hugo",
"build:ci": "hugo --panicOnWarning",
"format:fix": "sort-package-json",
"start": "hugo server",
"test:a11y": "start-test start 1313 test:a11y:tests",
"test:a11y:tests": "playwright test",
"test:spelling": "cspell content"
},
"dependencies": {
"hugo-extended": "^0.141.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.1",
"cspell": "^8.17.1",
"sort-package-json": "^2.14.0",
"start-server-and-test": "^2.0.10"
},
"//": "See readme.md for explanations of each dependency and script"
}