-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ens-drainer",
"displayName": "ENS Drainer",
"version": "0.5.0",
"description": "forta bot that monitor suspicious ens registration and their transactions",
"longDescription": "the bot identifies ens registrations with suspicious name and their transactions since is registered",
"repository": "https://github.com/ManyRios/ENS-Drainer",
"licenseUrl": "https://github.com/forta-network/forta-bot-sdk/blob/master/starter-project/LICENSE.md",
"promoUrl": "https://forta.org",
"chainIds": [
1,
10,
56,
137,
250,
42161,
43114
],
"scripts": {
"build": "tsc",
"start": "npm run start:dev",
"start:dev": "nodemon --watch src --watch forta.config.json -e js,ts,json --exec \"npm run build && forta-agent run\"",
"start:prod": "forta-agent run --prod",
"tx": "npm run build && forta-agent run --tx",
"block": "npm run build && forta-agent run --block",
"range": "npm run build && forta-agent run --range",
"alert": "npm run build && forta-agent run --alert",
"sequence": "npm run build && forta-agent run --sequence",
"file": "npm run build && forta-agent run --file",
"publish": "forta-agent publish",
"info": "forta-agent info",
"logs": "forta-agent logs",
"push": "forta-agent push",
"disable": "forta-agent disable",
"enable": "forta-agent enable",
"keyfile": "forta-agent keyfile",
"stake": "forta-agent stake",
"test": "jest"
},
"dependencies": {
"bignumber.js": "^9.1.2",
"dotenv": "^16.3.1",
"forta-agent": "^0.1.45",
"forta-agent-tools": "^3.2.10",
"lru-cache": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/nodemon": "^1.19.0",
"jest": "^29.7.0",
"nodemon": "^2.0.8",
"ts-jest": "^29.1.2",
"typescript": "^4.3.4"
}
}