-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 873 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 873 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
25
26
{
"name": "klerosboard",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"auth": "graph auth --product hosted-service $ACCESS_TOKEN",
"build": "graph build",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:gnosis": "mustache config/gnosis.json subgraph.template.yaml > subgraph.yaml",
"deploy:mainnet": "yarn prepare:mainnet && graph codegen && graph deploy --studio klerosboard-mainnet",
"deploy:gnosis": "yarn prepare:gnosis && graph codegen && graph deploy --studio klerosboard-gnosis"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.71.2",
"@graphprotocol/graph-ts": "^0.35.1",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/mustache": "^4",
"matchstick-as": "0.5.0"
},
"volta": {
"node": "20.13.1",
"yarn": "4.2.2"
}
}