-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.45 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.45 KB
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
29
30
31
32
{
"name": "vanityurls-website",
"version": "2.1.0",
"description": "VanityURls.link Website and documentation",
"scripts": {
"dev": "hugo server --buildDrafts",
"dev:search": "hugo --minify && pagefind --site public && cp -r public/pagefind static/ && hugo server --buildDrafts",
"build": "hugo --minify && npm run index && cp -r public/pagefind static/",
"index": "pagefind --site public",
"clean": "rm -rf public resources/_gen static/pagefind",
"lint": "npm run lint:md && npm run lint:yaml && npm run lint:spell",
"lint:md": "markdownlint-cli2 'content/**/*.md'",
"lint:md:fix": "markdownlint-cli2 --fix 'content/**/*.md'",
"lint:spell": "cspell --no-progress 'content/**/*.md' '*.yaml' '*.toml'",
"lint:spell:fix": "cspell --no-progress --words-only 'content/**/*.md' | sort -u >> cspell-words.txt",
"lint:yaml": "yamllint hugo.yaml i18n/*.yaml data/**/*.yaml 2>/dev/null || npx js-yaml hugo.yaml > /dev/null",
"lint:links": "lychee --config lychee.toml content/**/*.md",
"lint:secrets": "gitleaks detect --config .gitleaks.toml --source . --no-banner"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.20",
"cspell": "^8.0.0",
"markdownlint-cli2": "^0.14.0",
"pagefind": "^1.4.0",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.19",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0"
}
}