-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "personal-website",
"version": "0.12.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3232",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate-favicon": "node scripts/generate-favicon.js",
"update-blog-dates": "tsx scripts/update-blog-dates.ts",
"process-source-urls": "tsx scripts/process-source-urls.ts",
"process-source-urls:dry-run": "tsx scripts/process-source-urls.ts --dry-run"
},
"dependencies": {
"@google/genai": "^1.38.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^15.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/html2canvas": "^0.5.35",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"gsap": "^3.14.2",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.4",
"lucide-react": "^0.469.0",
"next": "^15.1.0",
"next-auth": "5.0.0-beta.30",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.1",
"rehype-slug": "^6.0.0",
"tailwind-merge": "^2.5.4",
"three": "^0.182.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"to-ico": "^1.0.1",
"tsx": "^4.21.0",
"typescript": "^5.7.2"
}
}