-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
41
42
43
44
45
{
"name": "rpc-provider-api",
"author": {
"name": "@denizumutdereli",
"email": "[email protected]"
},
"version": "1.0.0",
"description": "Enterprise grade RPC Provider API",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"dependencies": {
"axios": "^1.6.7",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.13.4",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"http-proxy-middleware": "^2.0.6",
"ip-address": "^10.0.1",
"redis": "^4.6.13",
"uuid": "^11.0.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/ip-address": "^7.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}