-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "forta-perpfi-suite",
"version": "0.0.1",
"description": "Collection of scan agent handlers that monitor Perpetual Finance",
"scripts": {
"start": "npm run start:dev",
"start:dev": "nodemon --watch src --watch forta.config.json -e js,json --exec 'forta-agent run'",
"start:prod": "forta-agent run --prod",
"tx": "forta-agent run --tx",
"block": "forta-agent run --block",
"range": "forta-agent run --range",
"file": "forta-agent run --file",
"publish": "forta-agent publish",
"push": "forta-agent push",
"disable": "forta-agent disable",
"enable": "forta-agent enable",
"keyfile": "forta-agent keyfile",
"test": "jest",
"test:docker": "docker build -t testbuild .",
"posttest:docker": "docker run testbuild"
},
"dependencies": {
"@uniswap/v3-core": "^1.0.0",
"bignumber.js": "^9.0.1",
"ethers": "^5.4.6",
"forta-agent": "^0.0.21",
"axios": "^0.23.0"
},
"devDependencies": {
"@perp/lushan": "^0.11.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.1",
"jest": "^27.2.5",
"nodemon": "^2.0.8"
}
}