-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "uigen",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--require ./node-compat.cjs' next dev --turbopack",
"dev:daemon": "NODE_OPTIONS='--require ./node-compat.cjs' next dev --turbopack > logs.txt 2>&1 & echo 'Server started, writing logs to logs.txt'",
"build": "NODE_OPTIONS='--require ./node-compat.cjs' next build",
"start": "NODE_OPTIONS='--require ./node-compat.cjs' next start",
"lint": "next lint",
"test": "vitest",
"setup": "npm install && npx prisma generate && npx prisma migrate dev",
"db:reset": "npx prisma migrate reset --force"
},
"dependencies": {
"@ai-sdk/anthropic": "1.2.12",
"@babel/standalone": "^7.27.6",
"@monaco-editor/react": "^4.7.0",
"@prisma/client": "^6.10.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@tailwindcss/typography": "^0.5.16",
"ai": "4.3.16",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"jose": "^6.0.11",
"lucide-react": "^0.517.0",
"next": "^15.5.15",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.3",
"server-only": "^0.0.1",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/babel__standalone": "^7.1.9",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.5.2",
"eslint": "9.29.0",
"eslint-config-next": "15.3.4",
"jsdom": "^26.1.0",
"prisma": "^6.10.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}