-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 2.24 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
{
"name": "bob-ambient-subgraph",
"version": "0.0.1",
"scripts": {
"create": "graph create DistributedCollective/bob-ambient-subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create DistributedCollective/bob-ambient-subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy DistributedCollective/bob-ambient-subgraph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy DistributedCollective/bob-ambient-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"dev": "npm run codegen && npm run deploy-local -- --version-label v0.0.1",
"dev:no-build": "npm run codegen && npm run deploy-local",
"dev:nodemon": "node_modules/nodemon/bin/nodemon.js --exec 'npm run dev' --ignore build/ --ignore generated/ --ignore data/ --ext 'ts,json,graphql,yaml'",
"dev:nodemon:no-build": "node_modules/nodemon/bin/nodemon.js --exec 'npm run dev:no-build' --ignore build/ --ignore generated/ --ignore data/ --ext 'ts,json,graphql,yaml'",
"lint": "npx prettier src/",
"lint:fix": "npx prettier -w src/",
"scaffold": "node utils/scaffoldFromAbi.js",
"cd": "npm run create-local && npm run deploy-local -- --version-label",
"prepare": "husky install",
"prepare:BOB:testnet": "sh ./scripts/prepare_testnet.sh",
"prepare:BOB:mainnet": "sh ./scripts/prepare_mainnet.sh",
"prepare:SEPOLIA:testnet": "sh ./scripts/prepare_sepolia.sh",
"prepare:testnet": "sh ./scripts/prepare_testnet.sh",
"prepare:mainnet": "sh ./scripts/prepare_mainnet.sh",
"test-start-block": "node -r esm utils/startFromLaterBlock.js",
"dev:up": "docker compose --env-file .env.dev up -d",
"dev:down": "docker compose --env-file .env.dev down"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.45.2",
"@graphprotocol/graph-ts": "^0.29.0",
"@protofire/subgraph-toolkit": "^0.1.2",
"commander": "^8.3.0",
"dotenv": "^16.0.0",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1"
},
"dependencies": {
"esm": "^3.2.25",
"js-yaml": "^4.1.0",
"matchstick-as": "^0.3.0"
}
}