-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 959 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 959 Bytes
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
{
"name": "ai-support-system",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"build:db": "npm run build --workspace=@agent/db",
"build:api": "npm run build --workspace=api",
"build:backend": "npm run build:db && npm run build:api",
"start:api": "npm run start --workspace=api"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.7.4",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@ai-sdk/azure": "^3.0.11",
"@ai-sdk/google": "^3.0.8",
"@ai-sdk/openai": "^3.0.10",
"@ai-sdk/xai": "^3.0.23",
"@prisma/client": "^5.22.0",
"ai": "^6.0.35",
"prisma": "^5.22.0",
"zod": "^4.3.5"
}
}