-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 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
59
60
{
"name": "inksolver",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.14.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"seed:demo": "node scripts/seed-demo.mjs",
"backfill:embeddings": "node scripts/backfill-embeddings.mjs",
"start": "next start",
"lint": "next lint",
"smoke:local": "node scripts/smoke-local.mjs",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1053.0",
"@clerk/nextjs": "^7.4.2",
"@clerk/ui": "^1.14.0",
"@radix-ui/react-slot": "^1.2.3",
"@tldraw/tlschema": "5.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"katex": "^0.17.0",
"lucide-react": "^1.16.0",
"next": "15.5.18",
"postgres": "^3.4.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^2.6.0",
"tldraw": "^5.0.1",
"zod": "^3.25.76",
"zustand": "^5.0.13"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/katex": "^0.16.8",
"@types/node": "^22.13.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.10",
"eslint": "^9.23.0",
"eslint-config-next": "15.5.18",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.12",
"postcss": "8.5.15"
}
}
}