-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "@fastify/website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build:website": "npm run build:data && astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "biome check",
"lint:fix": "biome check --write",
"check": "astro check",
"build:data": "node scripts/postinstall.mjs",
"generate:og-assets": "node scripts/generate-og-assets.mjs"
},
"dependencies": {
"@astrojs/mdx": "^7.0.5",
"@astrojs/sitemap": "^3.7.3",
"@fontsource-variable/inter": "^5.3.0",
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/space-grotesk": "^5.3.0",
"@lucide/astro": "^1.31.0",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.0",
"astro-inference": "^0.2.6",
"astro-pagefind": "^2.0.1",
"format-si-unit": "^0.0.12",
"isomorphic-dompurify": "^3.22.0",
"marked": "^18.0.9",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/markdown-remark": "^7.2.2",
"@biomejs/biome": "^2.5.7",
"@date-fns/utc": "^2.1.1",
"date-fns": "^4.4.0",
"markdown-it": "^15.0.0",
"octokit": "^5.0.5",
"pagefind": "^1.5.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"svgo": "^4.0.2",
"typescript": "^5.9.3",
"vite-plugin-image-optimizer": "^2.0.3"
}
}