-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.69 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
{
"name": "reinvest-tracker",
"license": "MIT",
"version": "0.1.0",
"scripts": {
"build-and-deploy:arbitrum": "yarn mustache:arbitrum && yarn codegen && yarn build && yarn deploy:arbitrum",
"build-and-deploy:avalanche": "yarn mustache:avalanche && yarn codegen && yarn build && yarn deploy:avalanche",
"build-and-deploy:mantle": "yarn mustache:mantle && yarn codegen && yarn build && yarn deploy:mantle",
"codegen": "graph codegen",
"build": "graph build",
"deploy:arbitrum": "graph deploy yieldyak/arbitrum-reinvest-tracker --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:avalanche": "graph deploy yieldyak/reinvest-tracker --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:mantle": "graph deploy yieldyak/mantle-reinvest-tracker --ipfs https://subgraph-api.mantle.xyz/ipfs --node https://subgraph-api.mantle.xyz/deploy",
"mustache:arbitrum": "mustache config/arbitrum.json subgraph.yaml.mustache > subgraph.yaml",
"mustache:avalanche": "mustache config/avalanche.json subgraph.yaml.mustache > subgraph.yaml",
"mustache:mantle": "mustache config/mantle.json subgraph.yaml.mustache > subgraph.yaml",
"create:mantle": "graph create yieldyak/mantle-reinvest-tracker --node https://subgraph-api.mantle.xyz/deploy"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.29.0",
"@graphprotocol/graph-ts": "^0.26.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4",
"web3": "^1.5.2"
}
}