-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.42 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
32
33
34
35
36
37
{
"name": "@zoralabs/nft-creator-subgraph",
"version": "0.2.0",
"license": "MIT",
"repository": "https://github.com/ourzora/zora-creator-subgraph",
"private": true,
"scripts": {
"codegen": "yarn gen-yaml-config && yarn extract-abis && graph codegen && echo 'import { Address } from \"@graphprotocol/graph-ts\";' >> generated/templates.ts",
"extract-abis": "node scripts/extract-abis.mjs",
"build": "yarn run codegen && graph build",
"gen-yaml-config": "cat template_warning.md > subgraph.yaml && yaml2json config/${NETWORK:-zora-sepolia}.yaml | mustache - subgraph.template.yaml >> subgraph.yaml && yaml2json config/${NETWORK:-zora-sepolia}.yaml | mustache - src/constants/chainid.ts.template > src/constants/chainid.ts",
"deploy-hosted": "graph deploy --node https://api.thegraph.com/deploy/ ${DEPLOYMENT_PATH}",
"test": "graph test . -v 0.5.4"
},
"files": [
"config/",
"graph-abis/",
"src/",
"subgraph.template.yaml",
"schema.graphql"
],
"dependencies": {
"@graphprotocol/graph-ts": "0.29.3",
"@zoralabs/mints-contracts": "*",
"@zoralabs/nft-drop-contracts": "1.12.0",
"@zoralabs/protocol-deployments": "*",
"@zoralabs/protocol-rewards": "*",
"@zoralabs/zora-1155-contracts": "*"
},
"devDependencies": {
"@goldskycom/cli": "^7.1.0",
"@graphprotocol/graph-cli": "0.48.0",
"mustache": "4.2.0",
"typescript": "^5.2.2",
"yamljs": "^0.3.0"
}
}