-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.4 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.4 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
{
"name": "huat-fsac-docs",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"clean": "rimraf .astro dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"{src,tests}/**/*.{ts,tsx,css,json,mjs}\" \"*.{json,mjs,ts}\"",
"format:check": "prettier --check \"{src,tests}/**/*.{ts,tsx,css,json,mjs}\" \"*.{json,mjs,ts}\"",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"quality:bundle": "node scripts/quality/check-bundle-budget.mjs",
"quality:lighthouse": "lhci collect --config=.config/lighthouserc.json \u0026\u0026 lhci assert --config=.config/lighthouserc.json",
"metrics:collect": "node scripts/metrics/collect-github-metrics.mjs",
"dev:worker": "wrangler pages dev dist --compatibility-date=2024-04-01",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/cloudflare": "^13.1.7",
"@astrojs/starlight": "^0.38.4",
"astro": "^6.1.9",
"qrcode": "^1.5.4",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"minimatch@\u003c3.1.3": "\u003e=3.1.3",
"minimatch@\u003e=9.0.0 \u003c9.0.6": "\u003e=9.0.6",
"ajv@\u003c6.14.0": "~6.14.0",
"rollup@\u003e=4.0.0 \u003c4.59.0": "\u003e=4.59.0",
"yaml@\u003c2.8.3": "\u003e=2.8.3"
}
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260425.1",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@playwright/test": "^1.58.2",
"@types/qrcode": "^1.5.6",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"husky": "^9.0.11",
"jsdom": "^28.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.1.3",
"terser": "^5.46.1",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": "\u003e=22.0.0"
}
}