-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 KB
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
{
"name": "forta-developer-protocol-bigagent",
"version": "0.0.1",
"description": "Forta Bot template for monitoring a large combination of conditions",
"scripts": {
"start": "npm run start:dev",
"start:dev": "nodemon --watch src --watch forta.config.json --watch agent-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 agent.spec.js",
"validate": "node ./src/validate-config.js"
},
"dependencies": {
"forta-agent": "^0.1.6",
"bignumber.js": "^9.0.2",
"rolling-math": "^0.0.3"
},
"devDependencies": {
"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"
}
}