-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "NanoRPCProxy",
"version": "1.4.5",
"description": "Relay, firewall, rate limiter, ddos protection and cache system between a client and a Nano node RPC interface",
"main": "src/proxy.js",
"license": "GPL-3.0",
"repository": "https://github.com/Joohansson/NanoRPCProxy",
"scripts": {
"test": "jest --runInBand",
"start": "npm run-script build && node -r esm dist/proxy.js",
"build": "npx tsc",
"build:prod": "npx tsc --sourceMap false"
},
"homepage": "https://github.com/joohansson/NanoRPCProxy",
"dependencies": {
"big-integer": "^1.6.48",
"bigdecimal": "^0.6.1",
"console-stamp": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-ipfilter": "^1.2.0",
"express-slow-down": "^1.4.0",
"fs": "0.0.1-security",
"helmet": "^4.1.1",
"http": "0.0.0",
"https": "^1.0.0",
"ip-range-check": "^0.2.0",
"lowdb": "^1.0.0",
"nanocurrency": "^2.4.0",
"nanocurrency-web": "^1.0.6",
"node-cache": "^5.1.0",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"package.json": "^2.0.1",
"prom-client": "^13.0.0",
"rate-limiter-flexible": "^2.2.1",
"reconnecting-websocket": "^4.4.0",
"remove-trailing-zeros": "^1.0.3",
"tweetnacl": "^1.0.1",
"websocket": "^1.0.31",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/console-stamp": "^0.2.33",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-slow-down": "^1.3.0",
"@types/jest": "^26.0.19",
"@types/lowdb": "^1.0.9",
"@types/node": "^14.14.14",
"@types/node-fetch": "^2.5.7",
"@types/node-schedule": "^1.3.1",
"@types/supertest": "^2.0.10",
"@types/websocket": "^1.0.1",
"@types/ws": "^7.4.0",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}