-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "2pi-network-forta-agent",
"version": "0.0.2",
"description": "2PI Network Forta Agent",
"repository": "https://github.com/2pinetwork/agents",
"license": "MIT",
"chainIds": [
137
],
"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",
"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",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"forta-agent": "^0.1.8"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/nodemon": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"jest": "^28.1.2",
"nodemon": "^2.0.18",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}