-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1.61 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
{
"name": "ograph",
"license": "UNLICENSED",
"scripts": {
"auth-hosted": "graph auth --product hosted-service",
"auth": "graph auth --studio",
"codegen": "graph codegen",
"build": "graph build",
"test": "asp --verbose",
"prep:mainnet": "mustache networks/mainnet.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"prep:devnet": "mustache networks/devnet.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"prep:testnet": "mustache networks/testnet.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"deploy:devnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ onomyprotocol/ograph-devnet",
"deploy:testnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ onomyprotocol/ograph-testnet",
"deploy:mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ onomyprotocol/ograph-mainnet",
"deploy:studio": "graph deploy --studio ograph-mainnet",
"create-local": "graph create --node http://localhost:8020/ onomyprotocol/ograph-devnet",
"remove-local": "graph remove --node http://localhost:8020/ onomyprotocol/ograph-devnet",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 onomyprotocol/ograph-devnet"
},
"dependencies": {
"@assemblyscript/loader": "^0.19.11",
"@graphprotocol/graph-cli": "0.21.1",
"@graphprotocol/graph-ts": "0.20.0"
},
"devDependencies": {
"mustache": "^4.1.0",
"@as-pect/cli": "^6.2.4",
"assemblyscript": "^0.19.11"
}
}