-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1.71 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
{
"name": "known-origin",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prep:mainnet": "mustache templates/mainnet.json subgraph.template.yaml > subgraph.yaml && graph codegen;",
"prep:goerli": "mustache templates/goerli.json subgraph.template.yaml > subgraph.yaml && graph codegen;",
"deploy:mainnet": "npm run prep:mainnet; graph deploy --studio known-origin",
"deploy:goerli": "npm run prep:goerli; graph deploy --studio known-origin-goerli",
"deploy:mainnet-hosted": "yarn run prep:mainnet; graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ knownorigin/known-origin",
"deploy:prod2-hosted": "yarn run prep:mainnet; graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ knownorigin/knownoriginprod2",
"deploy:staging-hosted": "yarn run prep:mainnet; graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ knownorigin/known-origin-staging",
"deploy:goerli-hosted": "yarn run prep:goerli; graph deploy --product hosted-service knownorigin/known-origin-goerli",
"create-local": "graph create --node http://localhost:8020/ knownorigin/known-origin",
"remove-local": "graph remove --node http://localhost:8020/ knownorigin/known-origin",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 knownorigin/known-origin",
"test": "graph test",
"test-docker": "graph test --docker"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.55.0",
"@graphprotocol/graph-ts": "0.31.0",
"mustache": "4.2.0"
},
"devDependencies": {
"matchstick-as": "0.5.2"
}
}