-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "cfa-static",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"imports": {
"#data/*": "./src/_data/*",
"#lib/*": "./src/_lib/*",
"#collections/*": "./src/_lib/collections/*",
"#config/*": "./src/_lib/config/*",
"#eleventy/*": "./src/_lib/eleventy/*",
"#build/*": "./src/_lib/build/*",
"#media/*": "./src/_lib/media/*",
"#transforms/*": "./src/_lib/transforms/*",
"#utils/*": "./src/_lib/utils/*",
"#public/*": "./src/_lib/public/*",
"#guide-categories/*": "./src/guide-categories/*",
"#test/*": "./test/*",
"#scripts/*": "./scripts/*",
"#bin/*": "./bin/*"
},
"scripts": {
"build": "rm -rf _site && node scripts/eleventy-build.js && npm run check:links",
"serve": "rm -rf _site && node scripts/eleventy-build.js --serve --incremental",
"test": "node ./test/run-tests.js",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile tsconfig.tsbuildinfo",
"typecheck:strict": "node scripts/strict-typecheck-ratchet.js",
"cpd:fp": "jscpd src/_lib/utils/fp --min-tokens 12",
"cpd:design-system": "jscpd src/css/design-system --min-tokens 17",
"cpd": "node scripts/cpd.js && node scripts/cpd.js src/_lib src/_data scripts --min-tokens 18 --ignore '**/index.js,**/customise-cms/**,**/mutation/**' --ignore-pattern 'import.*from'",
"cpd:ratchet": "node scripts/cpd-ratchet.js",
"knip": "knip",
"knip:fix": "knip --fix",
"mutation": "node scripts/mutation.js",
"profile": "bash bin/profile",
"lint": "node scripts/biome.js check --error-on-warnings .",
"lint:fix": "node scripts/biome.js check --write .",
"lint:scss": "npx stylelint \"src/css/**/*.scss\"",
"lint:scss:fix": "npx stylelint --fix \"src/css/**/*.scss\"",
"precommit": "node test/precommit.js",
"customise-cms": "node scripts/customise-cms/index.js",
"generate-pages-yml": "node scripts/customise-cms/generate-full.js",
"generate-cms-types": "node scripts/generate-pages-cms-types.js",
"generate-blocks-reference": "node scripts/generate-blocks-reference.js",
"screenshot": "node scripts/screenshot.js",
"lighthouse": "node scripts/lighthouse.js",
"check:links": "node scripts/check-internal-links.js _site",
"check:a11y": "node scripts/check-accessibility.js _site"
},
"devDependencies": {
"@11ty/eleventy-dev-server": "3.0.0-alpha.11",
"@biomejs/biome": "2.4.11",
"@types/node": "^22.10.0",
"@vitest/coverage-istanbul": "^3.2.7",
"11ty.ts": "^0.0.7",
"axe-core": "^4.13.0",
"happy-dom": "^20.9.0",
"jscpd": "4.0.9",
"knip": "^5.88.1",
"oxc-parser": "^0.137.0",
"postcss-scss": "^4.0.9",
"stylelint": "^17.10.0",
"stylelint-config-clean-order": "^8.0.1",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.1.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"zod": "^3.25.76"
},
"dependencies": {
"@11ty/eleventy": "4.0.0-alpha.9",
"@11ty/eleventy-img": "7.0.0",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@nfrasser/simple-html-tokenizer": "^0.5.11-4",
"@quasibit/eleventy-plugin-schema": "^1.13.0",
"@sindresorhus/slugify": "^3.0.0",
"chrome-launcher": "^1.2.1",
"esbuild": "^0.25.0",
"gray-matter": "^4.0.3",
"instant.page": "^5.2.0",
"lighthouse": "^12.8.2",
"linkify-html": "^4.3.2",
"linkifyjs": "^4.3.2",
"liquidjs": "^10.25.7",
"markdown-it": "^14.1.1",
"pagefind": "^1.5.2",
"playwright": "^1.59.1",
"sass": "^1.99.0",
"sharp": "^0.34.5",
"tinyglobby": "^0.2.14",
"uwrap": "^0.1.2",
"yaml": "^2.8.3"
}
}