forked from hashgraph/hedera-json-rpc-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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": "@hashgraph/json-rpc-server",
"version": "0.55.0-SNAPSHOT",
"description": "Hedera Hashgraph Ethereum JSON RPC server. Accepts requests for Ethereum JSON RPC 2.0 APIs",
"main": "dist/index.js",
"keywords": [],
"author": "Hedera Smart Contracts Team",
"dependencies": {
"@hashgraph/json-rpc-relay": "file:../relay",
"axios": "^1.4.0",
"co-body": "6.2.0",
"dotenv": "^16.0.0",
"koa": "^2.13.4",
"koa-body-parser": "^0.2.1",
"koa-cors": "^0.0.16",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.1",
"mocha": "^10.6.0",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"pnpm": "^8.7.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@hashgraph/hedera-local": "^2.29.0",
"@hashgraph/sdk": "^2.50.0-beta.3",
"@koa/cors": "^5.0.0",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/heapdump": "^0.3.4",
"@types/koa-bodyparser": "^4.3.5",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.31",
"@types/uuid": "^10.0.0",
"axios-retry": "^3.5.1",
"chai": "^4.3.6",
"ethers": "^6.7.0",
"execution-apis": "git://github.com/ethereum/execution-apis.git#7907424db935b93c2fe6a3c0faab943adebe8557",
"shelljs": "^0.8.5",
"ts-mocha": "^9.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.5.5"
},
"scripts": {
"build": "pnpm clean && pnpm compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"acceptancetest": "nyc ts-mocha tests/acceptance/index.spec.ts",
"start": "node dist/index.js",
"test": "nyc ts-mocha --recursive './tests/integration/*.spec.ts' './tests/integration/**/*.spec.ts' --exit"
},
"nyc": {
"check-coverage": false,
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}