-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 823 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 823 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
{
"name": "dj-ai-server",
"version": "1.0.0",
"description": "A server that generates music playlists using different LLM providers",
"main": "api/index.js",
"scripts": {
"start": "node api/index.js",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"vercel-build": "npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"axios": "^1.9.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"glob": "^10.0.0",
"rimraf": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/node": "^20.8.10",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}