-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "balancer-circuit-breaker-bot",
"version": "0.0.1",
"description": "trigger alerts when crazy things happen",
"keywords": [],
"license": "MIT",
"type": "module",
"author": "Dan Matthews <[email protected]>",
"homepage": "https://github.com/pie-dao/balancer-circuit-breaker-bot",
"repository": {
"type": "git",
"url": "https://github.com/pie-dao/balancer-circuit-breaker-bot.git"
},
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/pie-dao/balancer-circuit-breaker-bot/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"start": "npm run lint && node -r esm src/index.js"
},
"dependencies": {
"@pie-dao/abis": "^1.0.0",
"@pie-dao/blockchain": "1.1.1",
"@pie-dao/utils": "^1.0.0",
"bignumber.js": "^9.0.0",
"cli-table2": "^0.2.0",
"esm": "^3.2.25",
"ethers": "4.0.47",
"node-fetch": "^2.6.0",
"ws": "^7.2.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}