-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 3.04 KB
/
package.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nikhilsnayak.dev",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 5000",
"build": "next build",
"start": "next start -p 5000",
"lint": "next lint .",
"lint:fix": "next lint --fix .",
"type-check": "tsc --noEmit",
"format": "prettier --write --ignore-path .gitignore .",
"format:check": "prettier --check --ignore-path .gitignore .",
"ci": "turbo lint type-check format:check",
"clean": "rm -rf node_modules .next .turbo",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:up": "drizzle-kit up"
},
"dependencies": {
"@ai-sdk/openai": "^1.1.13",
"@auth/drizzle-adapter": "^1.7.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@icons-pack/react-simple-icons": "^10.2.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "15.2.1-canary.5",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@tailwindcss/postcss": "^4.0.7",
"@tailwindcss/typography": "^0.5.16",
"@types/mdx": "^2.0.13",
"@types/node": "^22.13.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@upstash/ratelimit": "^2.0.5",
"@vercel/analytics": "^1.5.0",
"@vercel/kv": "^3.0.0",
"@vercel/postgres": "^0.10.0",
"@vercel/speed-insights": "^1.2.0",
"ai": "^4.1.45",
"babel-plugin-react-compiler": "^19.0.0-beta-21e868a-20250216",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"code-syntactic-sugar": "2.0.0-beta.2",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.4",
"drizzle-orm": "^0.40.0",
"drizzle-zod": "^0.7.0",
"eslint": "^9.20.1",
"eslint-config-next": "15.2.1-canary.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react-compiler": "^19.0.0-beta-21e868a-20250216",
"framer-motion": "12.4.7",
"langchain": "^0.3.19",
"lucide-react": "0.477.0",
"next": "15.2.1-canary.5",
"next-auth": "5.0.0-beta.25",
"next-themes": "^0.4.4",
"next-view-transitions": "^0.3.4",
"octokit": "^4.1.2",
"openai": "^4.85.3",
"postcss": "^8.5.3",
"prettier": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-markdown": "^10.0.0",
"react-resizable-panels": "^2.1.7",
"react-tweet": "^3.2.1",
"rehype-mdx-code-props": "^3.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.7",
"tailwindcss-animate": "^1.0.7",
"turbo": "^2.4.2",
"typescript": "^5.7.3",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"packageManager": "bun@1.2.0"
}