-
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) · 784 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 784 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": "caching_layer_for_apis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"test": "jest --forceExit --detectOpenHandles --watchAll --maxWorkers=1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"prom-client": "^15.1.3",
"redis": "^4.7.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2"
}
}