-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.21 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
{
"name": "astro-nano",
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "astro dev",
"dev:network": "astro dev --host",
"build": "astro check && astro build",
"typecheck": "npm run typecheck:app && npm run typecheck:playwright",
"typecheck:app": "astro sync && tsc -p tsconfig.json --noEmit",
"typecheck:playwright": "tsc -p tsconfig.playwright.json --noEmit",
"preview": "astro preview",
"preview:network": "astro preview --host",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:markdown": "markdownlint-cli2 \"src/content/**/*.{md,mdx}\"",
"spellcheck": "cspell \"src/**/*.{md,mdx,ts,tsx,js,jsx,astro}\" --no-progress",
"spellcheck:html": "cspell \"dist/**/*.html\" --no-progress",
"spellcheck:all": "npm run spellcheck && npm run build && npm run spellcheck:html",
"validate:links": "node scripts/validate-links.js",
"validate:all": "npm run lint && npm run spellcheck && npm run build && npm run spellcheck:html && npm run validate:links",
"test:ci": "npm run lint && npm run spellcheck && npm run build && npm run spellcheck:html && npm run validate:links",
"test:ci:verbose": "echo '🔍 Running CI validation locally...' && npm run lint && echo '✓ Linting passed' && npm run spellcheck && echo '✓ Source spell check passed' && npm run build && echo '✓ Build succeeded' && npm run spellcheck:html && echo '✓ HTML spell check passed' && npm run validate:links && echo '✓ Link validation passed' && echo '✅ All CI checks passed!'",
"qa": "playwright test --ignore-snapshots",
"qa:headed": "playwright test --headed --ignore-snapshots",
"qa:ui": "playwright test --ui",
"qa:debug": "playwright test --debug",
"qa:report": "playwright show-report",
"qa:codegen": "playwright codegen http://localhost:4321"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^4.3.14",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/tailwind": "^5.1.5",
"@eslint/js": "^10.0.1",
"@fontsource/inter": "^5.2.8",
"@fontsource/lora": "^5.2.8",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"accessible-astro-components": "^4.1.3",
"astro": "^5.18.1",
"astro-expressive-code": "^0.41.7",
"astro-icon": "^1.1.5",
"astro-seo": "^0.8.4",
"clsx": "^2.1.1",
"eslint": "^10.2.1",
"eslint-plugin-astro": "^1.7.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sharp": "^0.34.5",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.3",
"yaml": "^2.8.3"
},
"devDependencies": {
"@cspell/dict-css": "^4.1.1",
"@cspell/dict-html": "^4.0.15",
"@cspell/dict-npm": "^5.2.38",
"@cspell/dict-typescript": "^3.2.3",
"@playwright/test": "^1.59.1",
"@types/node": "^24.12.2",
"cspell": "^10.0.0",
"markdownlint-cli2": "^0.22.0",
"prettier": "^3.8.3"
},
"overrides": {
"@astrojs/check": {
"typescript": "$typescript"
}
}
}