-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.51 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.51 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
33
34
35
36
37
38
39
{
"name": "vanityurls-website",
"version": "2.12.0",
"description": "VanityURls.link Website and documentation",
"author": {
"name": "Benoît H. Dicaire",
"email": "bhd@VanityURLs.link",
"url": "http://github.com/bhdicaire"
},
"scripts": {
"dev": "hugo server --buildDrafts",
"dev:search": "hugo --minify && pagefind --site public && hugo server --buildDrafts",
"build": "hugo --gc --minify && npm run index",
"index": "pagefind --site public",
"clean": "rm -rf public resources/_gen",
"test": "node src/worker.test.mjs",
"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' '*.yml' '*.toml'",
"lint:spell:fix": "cspell --no-progress --words-only 'content/**/*.md' | sort -u >> cspell-words.txt",
"lint:yaml": "yamllint hugo.yml i18n/*.yml data/*.yml 2>/dev/null || npx js-yaml hugo.yml > /dev/null",
"lint:links": "lychee content/**/*.md",
"lint:secrets": "gitleaks detect --source . --no-banner"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@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",
"wrangler": "^4.85.0"
}
}