-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "codegenie",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22 <23"
},
"scripts": {
"dev": "NODE_OPTIONS=--no-experimental-webstorage next dev --turbopack -p 3008",
"build": "node scripts/migrate-on-vercel.mjs && NODE_OPTIONS=--no-experimental-webstorage next build",
"start": "NODE_OPTIONS=--no-experimental-webstorage next start",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "tsx --test src/**/*.test.ts",
"test:integration": "tsx --test tests/integration/**/*.test.ts",
"check": "npm run typecheck && npm run lint && npm test && npm run test:integration && npm run build",
"postinstall": "prisma generate"
},
"dependencies": {
"@clerk/nextjs": "^6.39.6",
"@clerk/themes": "^2.4.57",
"@e2b/code-interpreter": "^1.5.1",
"@inngest/agent-kit": "0.13.2",
"@opentelemetry/winston-transport": "^0.31.0",
"@phosphor-icons/react": "^2.1.10",
"@prisma/client": "^6.19.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-use-controllable-state": "^1.2.3",
"@react-three/fiber": "^9.6.1",
"@sentry/nextjs": "^10.70.0",
"@shadergradient/react": "^2.4.20",
"@tanstack/react-query": "^5.81.2",
"@trpc/client": "^11.18.0",
"@trpc/server": "^11.18.0",
"@trpc/tanstack-react-query": "^11.18.0",
"ai": "^7.0.22",
"class-variance-authority": "^0.7.1",
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"fflate": "^0.8.3",
"inngest": "3.54.0",
"ipaddr.js": "1.9.1",
"lucide-react": "^0.523.0",
"nanoid": "^5.1.16",
"next": "^15.5.23",
"next-themes": "^0.4.6",
"prismjs": "^1.30.0",
"radix-ui": "^1.4.2",
"random-word-slugs": "^0.1.7",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.58.1",
"react-resizable-panels": "^3.0.3",
"react-textarea-autosize": "^8.5.9",
"server-only": "^0.0.1",
"sonner": "^2.0.5",
"superjson": "^2.2.2",
"tailwind-merge": "^3.3.1",
"three": "^0.185.1",
"use-stick-to-bottom": "^1.1.6",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.5.23",
"prisma": "^6.19.3",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5"
},
"overrides": {
"express@4.21.2": "4.22.2",
"body-parser@1.20.3": "1.20.6",
"path-to-regexp@0.1.12": "0.1.13",
"qs@6.13.0": "6.15.3",
"deepmerge-ts@7.1.5": "8.0.0",
"postcss@8.4.31": "8.5.23",
"sharp@0.34.5": "0.35.0"
}
}