-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "@hashgraph/json-rpc-relay",
"version": "0.30.0-SNAPSHOT",
"description": "Hedera Hashgraph implementation of Ethereum JSON RPC APIs. Utilises both the Hedera Consensus Nodes and the Mirror Nodes for transaction management and information retrieval",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [],
"author": "Hedera Smart Contracts Team",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"chai": "^4.3.6",
"sinon": "^14.0.0",
"ts-mocha": "^9.0.2",
"typescript": "^4.6.4"
},
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"lint": "npx eslint --ext .js,.ts .",
"format": "npx prettier --ignore-path ../../.gitignore --write \"**/*.+(js|ts|json)\"",
"test": "nyc ts-mocha --recursive ./tests/**/*.spec.ts --exit"
},
"dependencies": {
"@ethersproject/asm": "^5.7.0",
"@hashgraph/sdk": "^2.30.0",
"@keyvhq/core": "^1.6.9",
"better-lookup": "^1.3.0",
"axios": "^1.4.0",
"axios-retry": "^3.5.1",
"buffer": "^6.0.3",
"dotenv": "^16.0.0",
"ethers": "^5.6.8",
"find-config": "^1.0.0",
"keccak": "^3.0.2",
"keyv": "^4.2.2",
"keyv-file": "^0.2.0",
"lodash": "^4.17.21",
"lru-cache": "^7.14.0",
"pino": "^7.11.0",
"pnpm": "^8.6.6",
"rlp": "^3.0.0"
},
"nyc": {
"check-coverage": false,
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}