-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.48 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
{
"name": "blog",
"type": "module",
"version": "1.0.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev --host",
"build": "npm run sync-content && npm run check:mermaid && astro build && node scripts/run-pagefind.js && node scripts/prepare-cloudflare-pages-output.js",
"preview": "astro preview",
"astro": "astro",
"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:mermaid": "node scripts/check-mermaid-regression.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 run sync-content:check && npm run clean-content:dry-run",
"typecheck": "astro check && tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"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.1.0",
"@keystatic/core": "^0.5.50",
"@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": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.22.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-react-hooks": "^5.2.0",
"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"
}
}