forked from LedgerHQ/cream-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 819 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
{
"name": "ether-bots",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "yarn typechain",
"start": "ts-node ./src/index.ts",
"lint": "eslint src",
"typechain": "rm -rf ./src/contracts && typechain --target ethers-v5 --out-dir ./src/contracts ./abis/**/*.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"ethers": "^5.4.1",
"table": "^6.7.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@typechain/ethers-v5": "^7.0.1",
"@types/node": "^16.3.1",
"@types/table": "^6.3.2",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}