-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 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
{
"name": "personal-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"predev": "node scripts/sync-public-env.js",
"prestart": "node scripts/sync-public-env.js",
"prebuild": "node scripts/sync-public-env.js && node scripts/generate-llms-txt.js",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"postbuild": "node scripts/generate-markdown.js && node scripts/generate-headers.js",
"preview": "astro preview",
"astro": "astro",
"optimize": "astro build --experimental-optimize",
"analyze": "astro build --analyze",
"test": "echo \"No tests yet\" && exit 0",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"format:check": "biome format ."
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.0",
"@fontsource/playfair-display": "^5.2.8",
"@fontsource/plus-jakarta-sans": "^5.2.8",
"@fontsource/roboto-slab": "^5.2.8",
"astro": "^6.4.4",
"date-fns": "^4.1.0",
"gsap": "^3.14.2",
"rehype-mermaid": "^3.0.0"
},
"devDependencies": {
"@astrojs/mdx": "^6.0.2",
"@astrojs/sitemap": "^3.7.3",
"@biomejs/biome": "^2.4.16",
"@tailwindcss/cli": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^22.13.4",
"node-html-markdown": "^2.0.0",
"node-html-parser": "^7.1.0",
"playwright": "^1.53.0",
"tailwindcss": "^4.1.17",
"ultracite": "^7.8.2"
}
}