-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"license": "MIT",
"dependencies": {
"@koa/router": "^10.1.1",
"async-retry": "^1.3.3",
"axios": "^0.26.1",
"bignumber.js": "^9.0.2",
"dotenv": "^16.0.0",
"ethers": "^5.6.2",
"koa": "^2.13.4",
"lodash": "^4.17.21",
"log4js": "^6.4.4",
"mongodb": "^4.6.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.0.0",
"@types/async-retry": "^1.4.4",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.6.2",
"ts-node": "~10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.7.3"
},
"scripts": {
"compile": "typechain --target ethers-v5 --out-dir src/typechain 'abis/**/*.json'",
"prettier": "prettier --write \"**/*.{js,json,md,ts}\"",
"lint": "eslint --config ./.eslintrc.json --ignore-path ./.eslintignore --ext .js,.ts . --fix",
"fix": "yarn prettier && yarn lint",
"start": "ts-node src/app.ts",
"test_client": "ts-node scripts/client.ts"
}
}