-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "telos-evm-rpc",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"bootstrap": "npm i",
"build": "npm run bootstrap && tsc",
"start": "node dist/main.js",
"clean-deps": "rm -rdf node_modules && npm cache clean --force",
"clean-build": "rm -rdf dist"
},
"engines": {
"node": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telosnetwork/telos-evm-rpc.git"
},
"author": {
"name": "Telos",
"url": "https://telos.net"
},
"bugs": {
"url": "https://github.com/telosnetwork/telos-evm-rpc/issues"
},
"homepage": "https://github.com/telosnetwork/telos-evm-rpc#readme",
"dependencies": {
"@dnlup/fastify-traps": "^2.0.0",
"@elastic/elasticsearch": "^8.7.0",
"@ethereumjs/common": "^2.4.0",
"@ethereumjs/tx": "^3.3.0",
"@ethereumjs/util": "^8.0.2",
"@fastify/cors": "^8.2.1",
"@types/uws": "^0.13.3",
"@wharfkit/antelope": "^0.7.0",
"abi-decoder": "^2.4.0",
"bn.js": "^5.2.0",
"commander": "^12.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.7.0",
"fastify": "^4.17.0",
"keccak": "^3.0.2",
"moment": "^2.29.4",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"reconnecting-websocket": "^4.4.0",
"redis": "^4.6.6",
"uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js.git#v20.14.0",
"ws": "^8.3.0"
},
"devDependencies": {
"typescript": "4.4.3"
}
}