-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
67
68
{
"name": "pdf-to-interactive-lesson",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.5.0",
"bin": {
"course": "./bin/course.ts"
},
"scripts": {
"setup": "pnpm install && echo '\n✅ Setup complete! Copy .env.example to .env.local and add your API keys.'",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"course": "tsx bin/course.ts",
"test:hint-leak": "tsx scripts/test-hint-answer-leak.ts",
"audit:hint-leaks": "tsx scripts/audit-hint-answer-leaks.ts",
"test:grade": "tsx scripts/test-grade-short-answer.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.38",
"@ai-sdk/openai": "^2.0.56",
"@ai-sdk/togetherai": "^1.0.24",
"@dnd-kit/core": "^6.3.1",
"@neondatabase/serverless": "^1.0.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@upstash/redis": "^1.35.6",
"@vercel/blob": "^2.0.0",
"@vercel/queue": "^0.2.0",
"@xyflow/react": "^12.9.3",
"ai": "^5.0.81",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.552.0",
"mupdf": "^1.27.0",
"next-plausible": "^3.12.2",
"next": "16.1.6",
"ora": "^9.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"sharp": "0.33.5",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/dagre": "^0.7.53",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.7",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
}
}