-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "kaichen.dev",
"version": "0.1.0",
"private": true,
"description": "Personal site — https://kaichen.dev (Next.js App Router)",
"repository": {
"type": "git",
"url": "https://github.com/kaiiiichen/kaichen.dev.git"
},
"homepage": "https://kaichen.dev",
"bugs": {
"url": "https://github.com/kaiiiichen/kaichen.dev/issues"
},
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "git config core.hooksPath .githooks 2>/dev/null || true"
},
"dependencies": {
"@fontsource/bitter": "^5.2.10",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/nunito": "^5.2.7",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.4",
"@sentry/nextjs": "^10.49.0",
"@supabase/supabase-js": "^2.104.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"cheerio": "^1.2.0",
"geist": "^1.7.0",
"katex": "^0.16.45",
"next": "16.2.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3.2.4"
}
}