-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
82 lines (82 loc) · 2.23 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
78
79
80
81
82
{
"name": "hyperion-history",
"version": "3.3.10",
"description": "Scalable Full History API Solution for EOSIO based blockchains",
"main": "launcher.js",
"scripts": {
"logs": "pm2 logs Indexer",
"start:api": "pm2 start --only API --update-env",
"start:indexer": "pm2 start --only Indexer --update-env",
"tsc": "tsc",
"build": "tsc",
"build:watch": "tsc --watch",
"postinstall": "npm run build && npm run fix-permissions",
"fix-permissions": "node scripts/fix-permissions.js"
},
"engines": {
"node": ">=20"
},
"author": {
"name": "EOS Rio",
"url": "https://eosrio.io"
},
"repository": {
"type": "git",
"url": "https://github.com/eosrio/hyperion-history-api.git"
},
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^7.17.0",
"@eosrio/node-abieos": "3.3.2",
"@fastify/autoload": "4.0.1",
"@fastify/cors": "7.0.0",
"@fastify/formbody": "^6.0.1",
"@fastify/rate-limit": "^6.0.1",
"@fastify/redis": "^5.0.0",
"@fastify/swagger": "6.1.0",
"@pm2/io": "^5.0.2",
"amqplib": "^0.10.4",
"async": "^3.2.5",
"base-x": "^4.0.0",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"cross-fetch": "^4.0.0",
"eosjs": "^22.1.0",
"fast-json-stringify": "2.7.13",
"fastify": "3.29.5",
"fastify-elasticsearch": "^2.0.0",
"fastify-plugin": "^3.0.1",
"flatstr": "^1.0.12",
"global-agent": "^3.0.0",
"got": "11.8.5",
"ioredis": "^4.28.5",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"pino-pretty": "^11.0.0",
"portfinder": "^1.0.32",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"socket.io-redis": "^6.1.1",
"typescript": "^5.4.5",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.43.0",
"ws": "^8.16.0",
"nodemailer": "^6.9.13",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/async": "^3.2.24",
"@types/global-agent": "^2.1.3",
"@types/ioredis": "^4.28.10",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/ws": "^8.5.10"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3"
},
"trustedDependencies": [
"@eosrio/node-abieos"
]
}