-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.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
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
{
"name": "blog",
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "npm run generate:post-options && astro dev --host",
"build": "npm run sync-content && npm run generate:post-options && npm run check:series && npm run check:mdx-components && npm run check:mermaid && astro build && npm run prune:legacy-assets && node scripts/run-pagefind.js && node scripts/prepare-cloudflare-pages-output.js",
"preview": "astro preview",
"astro": "astro",
"postinstall": "patch-package",
"sync-content": "node --import tsx scripts/sync-content.js",
"sync-content:check": "node --import tsx scripts/sync-content.js --check",
"clean-content": "node --import tsx scripts/clean-content.js",
"clean-content:dry-run": "node --import tsx scripts/clean-content.js --dry-run",
"check:mdx-components": "node scripts/check-mdx-component-regression.mjs",
"check:mermaid": "node scripts/check-mermaid-regression.mjs",
"check:series": "node scripts/check-series-integrity.mjs",
"check:assets": "node scripts/check-asset-budgets.mjs",
"check:a11y-content": "node scripts/check-content-accessibility.mjs",
"prune:legacy-assets": "node scripts/prune-legacy-image-masters.mjs",
"series:report": "node scripts/check-series-integrity.mjs",
"generate:post-options": "node scripts/generate-post-options.mjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.mjs",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro,.mjs --fix",
"check:all": "npm run format:check && npm run typecheck && npm run lint && npm test && npm run check:assets && npm run check:a11y-content && npm run check:series && npm run check:mdx-components && npm run check:mermaid && npm run sync-content:check && npm run clean-content:dry-run",
"typecheck": "astro check && tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node --import tsx --test tests/content-paths.test.ts tests/iframe-url.test.ts tests/reading-time.test.ts tests/music-player.test.ts"
},
"dependencies": {
"@astrojs/cloudflare": "^14.3.0",
"@astrojs/mdx": "^8.0.0",
"@astrojs/react": "^6.0.5",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.4",
"@giscus/react": "^3.1.0",
"@keystatic/astro": "^6.0.0",
"@keystatic/core": "^0.6.9",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-slot": "^1.3.3",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lucide-react": "^1.40.0",
"medium-zoom": "^1.1.0",
"mermaid": "^11.17.2",
"pagefind": "^1.4.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@eslint/js": "^10.0.1",
"@types/file-saver": "^2.0.7",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"eslint": "^10.9.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.12.0",
"patch-package": "^8.0.1",
"png-to-ico": "^3.0.2",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.23.13",
"typescript-eslint": "^8.69.0"
},
"overrides": {
"esbuild": "^0.28.1",
"ws": "^8.21.0",
"yaml": "^2.9.0"
}
}