-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ak-aztec-protocol-funding",
"version": "0.0.8",
"description": "Detects when EOAs are funded via the Aztec Protocol and tracks the interactions between the funded accounts and other contracts, as well as any contract deployment from these accounts.",
"repository": {
"type": "git",
"url": "https://github.com/kovart/forta-aztec-protocol-funding"
},
"chainIds": [
1
],
"chainSettings": {
"default": {
"shards": 1,
"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",
"start:docker": "docker run --rm -it $(docker build -q .)",
"tx": "npm run build && forta-agent run --tx",
"block": "npm run build && forta-agent run --block",
"range": "npm run build && forta-agent run --range",
"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",
"test": "jest",
"format": "prettier --write \"**/*.+(js|json|css|md)\"",
"lint": "eslint src/ --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"forta-helpers": "^1.0.3",
"bignumber.js": "^9.1.0",
"ethers": "^5.7.1",
"forta-agent": "^0.1.26",
"forta-agent-tools": "^3.2.6",
"forta-bot-analytics": "^0.0.4",
"graphology": "^0.25.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/nodemon": "^1.19.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
}
}