-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "k2-subgraph",
"version": "1.0.0",
"description": "K2 contract data",
"scripts": {
"initial-setup-goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
"initial-setup-mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"codegen": "graph codegen",
"build": "graph build",
"auth-hosted": "graph auth --product hosted-service",
"auth-studio": "graph auth --studio",
"deploy-live": "graph deploy --product hosted-service bsn-eng/k2-mainnet",
"deploy-staging": "graph deploy --product hosted-service bsn-eng/k2-goerli",
"deploy-studio-staging": "graph deploy --studio k2-goerli",
"deploy-studio-live": "graph deploy --studio k2"
},
"author": "Abstract Systems SEZC",
"license": "MIT",
"dependencies": {
"@graphprotocol/graph-cli": "0.48.0",
"@graphprotocol/graph-ts": "0.29.3",
"mustache": "^3.1.0"
}
}