-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"license": "MIT",
"scripts": {
"testnet": "./testnet.sh",
"start": "./run.sh",
"lint": "eslint **/*.ts",
"format": "eslint **/*.ts --fix",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@swc/core": "1.3.82",
"@types/cli-progress": "^3.11.5",
"@types/jsonstream": "^0.8.33",
"@types/node": "^20.8.2",
"@types/node-fetch": "2",
"@types/prompts": "^2.4.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
},
"dependencies": {
"@chainsafe/bls-keygen": "^0.4.0",
"@chainsafe/ssz": "^0.13.0",
"JSONStream": "^1.3.5",
"chalk": "^4",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.4",
"commander": "^11.0.0",
"ethers": "^6.2.2",
"node-fetch": "^2",
"prompts": "^2.4.2",
"string-argv": "^0.3.2"
},
"optionalDependencies": {
"@chainsafe/blst": "^0.2.8"
}
}