-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 KB
/
package.json
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
40
{
"name": "load-balancer",
"version": "1.0.0",
"description": "Load balancer for Cosmos SDK RPC endpoints",
"main": "balancer.mjs",
"scripts": {
"build": "tsc",
"start": "node dist/balancer.js",
"dev": "tsc && node dist/balancer.js"
},
"type": "module",
"dependencies": {
"@octokit/core": "^6.1.2",
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"agentkeepalive": "^4.5.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"p-limit": "^6.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"chai": "^4.3.4",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"ts-node": "^10.9.2"
},
"author": "Cordt Hanson",
"license": "MIT",
"repository": "https://github.com/Cordtus/lazy-loadbalancer",
"private": false
}