-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 975 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 975 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
39
{
"name": "coderide-potpie-service",
"version": "1.0.0",
"description": "Microservice for analyzing GitHub repositories using Potpie.ai APIs",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js",
"test": "node test-service.js",
"test:help": "node test-service.js --help",
"test:websocket": "node websocket-test-client.js",
"test:websocket:help": "node websocket-test-client.js --help"
},
"keywords": [
"potpie",
"github",
"analysis",
"microservice",
"coderide"
],
"author": "Coderide by Simone",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"dotenv": "^16.3.1",
"axios": "^1.6.2",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"bullmq": "^5.1.9",
"ioredis": "^5.3.2",
"prom-client": "^15.1.0",
"langfuse": "^3.38.6"
},
"engines": {
"node": ">=20.0.0"
}
}