-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 728 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 728 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
{
"name": "chat-ai-api",
"version": "1.0.0",
"description": "Backend for an ai chat application",
"main": "server.js",
"scripts": {
"dev": "tsc --noEmit && tsx --watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"author": "Harold Fich",
"license": "MIT",
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"express": "^5.2.1",
"openai": "^6.15.0",
"stream-chat": "^9.27.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}