-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (21 loc) · 1.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "endemic-subgraph",
"version": "2.0.0",
"scripts": {
"codegen": "npx graph codegen",
"build": "npx graph build",
"prepare:goerli": "mustache configs/goerli.json subgraph.template.yaml > subgraph.yaml && npx graph codegen",
"prepare:arbitrum-goerli": "mustache configs/arbitrum-goerli.json subgraph.template.yaml > subgraph.yaml && npx graph codegen",
"prepare:aurora": "mustache configs/aurora.json subgraph.template.yaml > subgraph.yaml && npx graph codegen",
"deploy:goerli": "npm run prepare:goerli && npx graph deploy endemic-nft/endemic-goerli --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"deploy:aurora": "npm run prepare:aurora && npx graph deploy endemic-nft/endemic-aurora --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"deploy:aurora-staging": "npm run prepare:aurora && npx graph deploy endemic-nft/endemic-aurora-staging --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"deploy:arbitrum-goerli": "npm run prepare:arbitrum-goerli && npx graph deploy endemic-nft/endemic-arbitrum-goerli --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.35.0",
"@graphprotocol/graph-ts": "0.28.1",
"mustache": "4.2.0",
"prettier": "2.7.1"
}
}