forked from hashgraph/hedera-json-rpc-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "@hashgraph/json-rpc-ws-server",
"version": "0.60.0-SNAPSHOT",
"description": "Hedera Hashgraph Ethereum JSON RPC socket server. Accepts socket connections for the purpose of subscribing to real-time data.",
"main": "dist/index.js",
"keywords": [],
"author": "Hedera Smart Contracts Team",
"dependencies": {
"@hashgraph/json-rpc-config-service": "file:../config-service",
"@hashgraph/json-rpc-relay": "file:../relay",
"@hashgraph/json-rpc-server": "file:../server",
"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": "^13.0.1",
"koa-websocket": "^7.0.0",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1"
},
"devDependencies": {
"@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/koa-bodyparser": "^4.3.5",
"@types/koa-router": "^7.4.4",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.31",
"axios": "^1.4.0",
"axios-retry": "^3.5.1",
"chai": "^4.3.6",
"ethers": "^6.7.0",
"mocha": "^10.1.0",
"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",
"lint": "npx eslint --ext .js,.ts . --ignore-path ../../.eslintignore",
"test": "nyc ts-mocha --recursive './tests/unit/**/*.spec.ts' --exit"
},
"nyc": {
"check-coverage": false,
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}