forked from Monadical-SAS/rpc-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 2.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rpc-cache-server",
"version": "0.0.3",
"description": "A server to cache results of (expensive) RPC requests made to the Solana JSON RPC API",
"author": "Monadical",
"license": "APACHE",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Monadical-SAS/rpc-cache-server.git"
},
"bugs": {
"url": "https://github.com/Monadical-SAS/rpc-cache-server/issues"
},
"homepage": "https://github.com/Monadical-SAS/rpc-cache-server#readme",
"keywords": [
"rpc",
"solana",
"cache"
],
"browser": {
"./dist/lib/rpc-cache-connection/src/index.js": "./dist.browser/lib/index.browser.esm.js"
},
"main": "./dist/lib/rpc-cache-connection/src/index.js",
"dependencies": {
"@solana/web3.js": "^1.10.1",
"aws-sdk": "^2.905.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bs58": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"json-rpc-2.0": "^0.2.16",
"node-fetch": "^2.6.1",
"redis": "^3.1.2",
"typescript": "^4.2.4"
},
"files": [
"dist/lib",
"dist.browser/lib"
],
"scripts": {
"lint:fix": "eslint --fix '*/{src,test}/**/*.ts' && prettier --write '*/{src,test}/**/*.ts'",
"build": "tsc && cross-env NODE_ENV=production rollup -c"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.16",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/aws-lambda": "^8.10.76",
"@types/bs58": "^4.0.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-plugin-root-import": "^6.6.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^4.2.4"
}
}