-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "ai-workspace-backend",
"version": "1.0.0",
"description": "Backend server for AI Workspace with MCP servers and API",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "prisma generate",
"start": "npx prisma db push --accept-data-loss && tsx src/index.ts",
"postinstall": "prisma generate",
"mcp:server": "node dist/mcp/server.js",
"test": "node --loader tsx tests/test-tools.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma migrate reset --force && npm run db:seed"
},
"keywords": [
"adk",
"ai",
"workspace"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.44",
"@iqai/adk": "^0.4.0",
"@prisma/client": "^6.17.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^161.0.0",
"prisma": "^6.17.1",
"tsx": "^4.7.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^24.7.0",
"typescript": "^5.9.3"
}
}