-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 2.05 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
{
"name": "character-sheets-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare-sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"deploy-only-sepolia": "graph deploy --product=subgraph-studio character-sheets-sepolia",
"deploy-sepolia": "yarn prepare-sepolia && yarn codegen && yarn build && yarn deploy-only-sepolia",
"prepare-gnosis": "mustache config/gnosis.json subgraph.template.yaml > subgraph.yaml",
"deploy-only-gnosis": "graph deploy --product=subgraph-studio character-sheets-gnosis",
"deploy-gnosis": "yarn prepare-gnosis && yarn codegen && yarn build && yarn deploy-only-gnosis",
"prepare-base": "mustache config/base.json subgraph.template.yaml > subgraph.yaml",
"deploy-only-base": "graph deploy --product=subgraph-studio character-sheets-base",
"deploy-base": "yarn prepare-base && yarn codegen && yarn build && yarn deploy-only-base",
"prepare-optimism": "mustache config/optimism.json subgraph.template.yaml > subgraph.yaml",
"deploy-only-optimism": "graph deploy --product=subgraph-studio character-sheets-optimism",
"deploy-optimism": "yarn prepare-optimism && yarn codegen && yarn build && yarn deploy-only-optimism",
"prepare-polygon": "mustache config/polygon.json subgraph.template.yaml > subgraph.yaml",
"deploy-only-polygon": "graph deploy --product=subgraph-studio character-sheets-polygon",
"deploy-polygon": "yarn prepare-polygon && yarn codegen && yarn build && yarn deploy-only-polygon",
"create-local": "graph create --node http://localhost:8020/ dan13ram/character-sheets",
"remove-local": "graph remove --node http://localhost:8020/ dan13ram/character-sheets",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 dan13ram/character-sheets",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.60.0",
"@graphprotocol/graph-ts": "0.31.0"
},
"devDependencies": {
"matchstick-as": "0.6.0",
"mustache": "^4.2.0"
}
}