-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.72 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
56
57
58
{
"name": "rake-scam-token-detection-bot",
"version": "0.0.1",
"description": "Detects rake scam tokens that significantly take an additional swap fee on Uniswap DEX and transfer it to an EOA",
"repository": "https://github.com/sprtd/rake-scam-token-forta-detection-bot.git",
"chainIds": [
1,
137,
42161,
10,
43114,
42220,
56
],
"chainSettings": {
"56": {
"shards": 15,
"target": 3
}
},
"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",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"bignumber.js": "^9.1.1",
"dotenv": "^16.0.3",
"forta-agent": "^0.1.18",
"node-fetch": "^2.6.9",
"prettier": "^2.8.7"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/nodemon": "^1.19.0",
"forta-agent-tools": "^3.2.6",
"jest": "^27.0.6",
"nodemon": "^3.0.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}