-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.93 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
62
63
64
65
66
{
"name": "techinview",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"seed": "tsx scripts/seed-problems.ts",
"seed:historical-questions": "tsx scripts/import-historical-questions.ts",
"verify:problems": "node --import tsx ./scripts/verify-problems.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@deepgram/sdk": "^5.0.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.99.3",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.577.0",
"next": "14.2.35",
"next-mdx-remote": "^6.0.0",
"posthog-js": "^1.364.1",
"posthog-node": "^5.28.8",
"razorpay": "^2.9.6",
"react": "^18",
"react-dom": "^18",
"recharts": "^3.8.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20.19.37",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.31.10",
"eslint": "^8",
"eslint-config-next": "14.2.35",
"monaco-editor": "^0.55.1",
"postcss": "^8",
"postgres": "^3.4.8",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "^5"
}
}