-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
37 lines (37 loc) · 903 Bytes
/
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
{
"name": "new-rpc-caching",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Thomas Lisankie",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.29.1",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jayson": "^3.6.4",
"json-rpc-2.0": "^0.2.19",
"redis": "^3.1.2"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/redis": "^2.8.32",
"@types/redis-mock": "^0.17.0",
"@types/supertest": "^2.0.11",
"babel-jest": "^27.2.2",
"jest": "^27.2.2",
"redis-mock": "^0.56.3",
"supertest": "^6.1.6",
"typescript": "^4.4.3"
}
}