-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 908 Bytes
/
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
{
"name": "eth-nodejs",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest --coverage",
"get-balance": "ts-node -r tsconfig-paths/register ./src/cli/cli.ts get-balance",
"get-token-holders": "ts-node -r tsconfig-paths/register ./src/cli/cli.ts get-token-holders"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.4",
"colors": "^1.4.0",
"commander": "^12.0.0",
"viem": "^2.7.10"
}
}