-
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.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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": "portfolio",
"type": "module",
"version": "0.3.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"fixup": "bun format && bun lint",
"format": "bunx --bun @biomejs/biome format --write .",
"lint": "bunx --bun @biomejs/biome lint --write .",
"check": "bunx --bun @biomejs/biome check --write .",
"ci:check": "bunx --bun @biomejs/biome check .",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^4.3.14",
"@astrojs/react": "^5.0.3",
"@react-pdf/renderer": "^4.4.1",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"astro": "^5.18.1",
"gray-matter": "^4.0.3",
"katex": "^0.16.45",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@tailwindcss/vite": "^4.2.2",
"@types/bun": "latest",
"@types/katex": "^0.16.8",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
}
}