mirror of
https://github.com/minetest/dev.luanti.org.git
synced 2025-01-21 20:59:37 +00:00
8b5abbb581
* 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 commitf368bcbb9c
. * Revert "Use hugo-bin instead of hugo-extended" This reverts commit618d49d3ca
.
23 lines
687 B
JSON
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"
|
|
}
|