-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.21 KB
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": "4.0.6",
"description": "Scalable Full History API Solution for Antelope based blockchains",
"main": "./build/indexer/launcher.js",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"build:watch": "tsc --watch",
"postinstall": "npm run build && npm run fix-permissions",
"fix-permissions": "node scripts/fix-permissions.cjs",
"test": "bun test tests/unit"
},
"engines": {
"node": ">=22"
},
"type": "module",
"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": "8.19.1",
"@eosrio/hyperion-plugin-core": "^0.1.0",
"@eosrio/node-abieos": "4.1.0-f7d5b45",
"@fastify/autoload": "6.3.1",
"@fastify/cors": "11.2.0",
"@fastify/formbody": "8.0.2",
"@fastify/http-proxy": "11.4.2",
"@fastify/mongodb": "10.0.0",
"@fastify/rate-limit": "10.3.0",
"@fastify/redis": "7.2.0",
"@fastify/static": "9.0.0",
"@fastify/swagger": "9.7.0",
"@fastify/swagger-ui": "5.2.5",
"@socket.io/redis-adapter": "8.3.0",
"@wharfkit/antelope": "1.1.1",
"amqplib": "1.0.3",
"async": "3.2.6",
"cli-progress": "3.12.0",
"commander": "14.0.3",
"dotenv": "17.4.0",
"fastify": "5.8.4",
"fastify-plugin": "5.1.0",
"flatstr": "1.0.12",
"global-agent": "4.1.3",
"ioredis": "5.10.1",
"lodash": "4.18.1",
"mongodb": "7.1.1",
"nodemailer": "8.0.4",
"socket.io": "4.8.3",
"socket.io-client": "4.8.3",
"typescript": "6.0.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.61.0",
"undici": "8.0.0",
"ws": "8.20.0",
"zod": "4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/amqplib": "0.10.8",
"@types/async": "3.2.25",
"@types/global-agent": "3.0.0",
"@types/lodash": "4.17.24",
"@types/node": "25.5.0",
"@types/nodemailer": "7.0.11",
"@types/ws": "8.18.1",
"nodemon": "^3.1.14"
},
"optionalDependencies": {
"bufferutil": "4.1.0",
"utf-8-validate": "6.0.6"
},
"trustedDependencies": [
"@eosrio/node-abieos"
]
}