forked from JawherKl/ai-models-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 786 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 786 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
{
"name": "ia-models-integration",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --detectOpenHandles",
"start": "node src/server.mjs"
},
"jest": {
"testMatch": ["**/?(*.)+(spec|test).mjs"]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dotenv": "^16.4.7",
"express-rate-limit": "^7.5.1",
"ioredis": "^5.4.2",
"openai": "^4.82.0",
"prom-client": "^15.1.3",
"rate-limit-redis": "^4.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"express": "^4.21.2",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"supertest": "^7.0.0"
}
}