-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.43 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
{
"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"
},
"dependencies": {
"@astrojs/cloudflare": "^14.0.1",
"@astrojs/mdx": "^7.0.0",
"@astrojs/react": "^6.0.0",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@giscus/react": "^3.1.0",
"@keystatic/astro": "^5.2.0",
"@keystatic/core": "^0.5.51",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"astro": "^7.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"medium-zoom": "^1.1.0",
"mermaid": "^11.12.2",
"pagefind": "^1.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"yaml": "^2.9.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@types/file-saver": "^2.0.7",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"eslint": "^9.22.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react-hooks": "^5.2.0",
"patch-package": "^8.0.1",
"png-to-ico": "^3.0.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.22.4",
"typescript-eslint": "^8.26.1"
},
"overrides": {
"esbuild": "^0.28.1",
"ws": "^8.21.0",
"yaml": "^2.9.0"
}
}