-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.22 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.22 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
{
"name": "git-chronicles",
"version": "1.0.0",
"description": "An interactive Git course with fantasy narrative - bilingual (FR/EN)",
"scripts": {
"dev": "npx eleventy --serve",
"build": "npm run spell && NODE_ENV=production npx eleventy && node scripts/pipeline/minify-assets.js && npx pagefind --site _site",
"spell": "cspell \"src/**/*.njk\" \"README*.md\"",
"spell:fr": "cspell \"src/fr/**/*.njk\" \"README.fr.md\"",
"spell:en": "cspell \"src/en/**/*.njk\" \"README.md\"",
"check": "npm run check:i18n && npm run build && npm run check:links && npm run check:links:external && npm run check:a11y",
"check:i18n": "node scripts/pipeline/check-i18n-parity.js",
"check:links": "node scripts/pipeline/check-internal-links.js",
"check:links:external": "lychee --no-progress --config .lychee.toml --root-dir _site '_site/**/*.html'",
"check:a11y": "node scripts/pipeline/check-accessibility.js",
"prepare": "husky"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@cspell/dict-fr-fr": "^2.3.2",
"cspell": "^9.7.0",
"esbuild": "^0.27.3",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"pagefind": "^1.4.0"
},
"license": "SEE LICENSE IN LICENSE-CODE"
}