-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.72 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
{
"name": "sql-copilot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:grants": "tsx scripts/apply-sql-file.ts prisma/seed/roles-and-grants.sql",
"db:seed-sandbox": "tsx scripts/apply-sql-file.ts prisma/seed/seed-demo-dataset.sql",
"db:seed-app": "tsx scripts/seed-app-data.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@auth/prisma-adapter": "^2.11.3",
"@prisma/adapter-pg": "^7.9.0",
"@prisma/client": "^7.9.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"client-only": "^0.0.1",
"next": "16.2.12",
"next-auth": "^5.0.0-beta.32",
"node-sql-parser": "^5.4.0",
"pg": "^8.22.0",
"posthog-js": "^1.407.2",
"posthog-node": "^5.46.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"three": "^0.185.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"prisma": "^7.9.0",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"typescript": "^5",
"vitest": "^4.1.10"
},
"allowScripts": {
"@prisma/engines@7.9.0": true,
"core-js@3.49.0": true,
"esbuild@0.28.1": true,
"prisma@7.9.0": true,
"sharp@0.34.5": true,
"unrs-resolver@1.12.2": true,
"fsevents@2.3.3": true
}
}