-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.69 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
{
"name": "eth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "yarn hardhat compile",
"typechain": "yarn hardhat typechain",
"build": "run-s compile typechain",
"chain": "yarn hardhat node",
"clean": "rm -rf build artifacts typechain-types cache abi",
"fmt": "prettier src/*.ts src/**/*.ts --write",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"participant": "node -r ts-node/register -r tsconfig-paths/register -r dotenv/config src/participant.ts",
"campaign": "node -r ts-node/register -r tsconfig-paths/register -r dotenv/config src/campaign.ts",
"test1": "yarn participant -c config1.json",
"test2": "yarn participant -c config2.json",
"test3": "yarn participant -c config3.json",
"test4": "yarn participant -c config4.json",
"test5": "yarn campaign -c config5.json",
"test6": "yarn campaign -c config6.json",
"test7": "yarn campaign -c config7.json",
"test8": "yarn campaign -c config8.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/node": ">=16.0.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"hardhat": "^2.17.1",
"tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@types/debug": "^4.1.10",
"bigint-conversion": "^2.4.2",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"ethers": "^6.8.0",
"sleep-promise": "^9.1.0",
"ts-node": ">=8.0.0",
"typescript": ">=4.5.0",
"util": "^0.12.5",
"yargs": "^17.7.2",
"zod": "^3.22.2"
}
}