forked from frwd-1/sybil-defender
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.64 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.64 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
45
46
47
{
"name": "forta-agent-starter",
"displayName": "Forta Agent Starter",
"version": "0.0.1",
"description": "Forta Agent Python starter project",
"longDescription": "Welcome to the Forta Agent JavaScript starter project!\n\nForta Network presents this starter project as an entry point for bot developers who want to integrate with the Forta Network ecosystem. As part of our commitment to empowering developers, this project provides a foundation for building powerful and secure bots that can interact with the Forta platform and take advantage of its cutting-edge capabilities.\n\nThe Forta Agent SDK and CLI tool offer a seamless experience for developers who wish to leverage the decentralized and trustless environment provided by the Forta Network. Whether you're interested in creating DeFi bots, monitoring smart contract transactions, or generating real-time alerts, this starter project sets you on the right path to achieve your goals.\n\nJoin the Forta Network community and learn more about our mission to revolutionize decentralized finance and blockchain analytics: https://forta.org/",
"repository": "https://github.com/forta-network/forta-bot-sdk/tree/master/starter-project",
"licenseUrl": "https://github.com/forta-network/forta-bot-sdk/blob/master/starter-project/LICENSE.md",
"promoUrl": "https://forta.org",
"chainIds": [
1
],
"scripts": {
"preprocess": "node preprocess-config.js",
"postinstall": "python3 -m pip install -r requirements_dev.txt",
"start": "npm --max-old-space-size=32768 run start:dev",
"start:dev": "NODE_OPTIONS='--max-old-space-size=8196' nodemon --watch dist/src --watch forta.config.json -e py --exec \"forta-agent run\"",
"start:prod": "forta-agent run --prod",
"tx": "forta-agent run --tx",
"block": "forta-agent run --block",
"range": "npm run preprocess && NODE_OPTIONS=--max-old-space-size=32768 JSON_RPC_URL=$JSON_RPC_URL NETWORK_NAME=$NETWORK_NAME forta-agent run --range",
"alert": "forta-agent run --alert",
"sequence": "forta-agent run --sequence",
"file": "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": "python3 -m pytest"
},
"dependencies": {
"@apollo/client": "^3.8.8",
"cross-fetch": "^4.0.0",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"forta-agent": "^0.1.43",
"graphql": "^16.8.1",
"neo4j-driver": "^5.19.0"
},
"devDependencies": {
"nodemon": "^2.0.8"
}
}