-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 831 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 831 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
{
"name": "database-agent",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/app.js",
"scripts": {
"generate": "npx drizzle-kit generate",
"migrate": "npx drizzle-kit migrate",
"studio": "npx drizzle-kit studio",
"start": "nodemon src/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.8.4",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"nodemon": "^3.1.9",
"openai": "^4.91.1",
"pg": "^8.13.1",
"rate-limiter-flexible": "^7.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/pg": "^8.11.11",
"drizzle-kit": "^0.30.3",
"tsx": "^4.19.2"
}
}