-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
28 lines (28 loc) · 963 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"scripts": {
"build": "hugo",
"build:ci": "hugo --panicOnWarning && npm run test:spelling && npm run test:format",
"clean": "rm -rf public && echo Clear browser cache as well!",
"format": "sort-package-json && prettier --write .",
"prepare": "git submodule init && git submodule update",
"start": "hugo server",
"test:a11y": "start-test start 1313 test:a11y:tests",
"test:a11y:tests": "playwright test",
"test:format": "prettier --check .",
"test:links": "linkinator ./public -r",
"test:spelling": "cspell content README.md"
},
"dependencies": {
"hugo-extended": "^0.141.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@playwright/test": "^1.49.1",
"cspell": "^8.17.1",
"linkinator": "^6.1.2",
"prettier": "3.5.2",
"sort-package-json": "^2.14.0",
"start-server-and-test": "^2.0.10"
},
"//": "See readme.md for explanations of each dependency and script"
}