-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 1.2 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
{
"name": "nft-creator-subgraph",
"license": "MIT",
"repository": "https://github.com/ourzora/zora-creator-subgraph",
"scripts": {
"copy-abis": "bash abis/copy-abis.sh",
"codegen": "yarn gen-yaml-config && graph codegen && echo 'import { Address } from \"@graphprotocol/graph-ts\";' >> generated/templates.ts",
"build": "yarn run codegen && graph build",
"gen-yaml-config": "cat template_warning.md > subgraph.yaml && yaml2json config/${NETWORK:-zora-testnet}.yaml | mustache - subgraph.template.yaml >> subgraph.yaml && yaml2json config/${NETWORK:-zora-testnet}.yaml | mustache - src/constants/chainid.ts.template > src/constants/chainid.ts",
"deploy-hosted": "graph deploy --node https://api.thegraph.com/deploy/ ${DEPLOYMENT_PATH}",
"postinstall": "yarn run copy-abis",
"test": "graph test . -v 0.5.4"
},
"dependencies": {
"@graphprotocol/graph-ts": "0.29.3",
"@zoralabs/nft-drop-contracts": "1.12.0",
"@zoralabs/protocol-rewards": "1.1.0",
"@zoralabs/zora-1155-contracts": "2.6.0"
},
"devDependencies": {
"@goldskycom/cli": "^7.1.0",
"@graphprotocol/graph-cli": "0.48.0",
"matchstick-as": "^0.5.1",
"yamljs": "^0.3.0",
"mustache": "4.2.0"
}
}