-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "backend-ai",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3008",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:sync-init": "./scripts/sync-init-sql.sh",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"mcp:server": "npx tsx src/lib/mcp/server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@openrouter/sdk": "^0.5.1",
"@prisma/client": "^5.7.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-toast": "^1.2.15",
"amqplib": "^0.10.9",
"ioredis": "^5.3.2",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/amqplib": "^0.10.8",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.22",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"postcss": "^8.5.6",
"prisma": "^5.7.0",
"tailwindcss": "^4.1.17",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}