-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
61 lines (58 loc) · 3.85 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "poap-mainnet-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:ethereum": "mustache config/ethereum.json subgraph.template.yaml > subgraph.yaml",
"prepare:gnosis": "mustache config/gnosis.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiado": "mustache config/chiado.json subgraph.template.yaml > subgraph.yaml",
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiliz-dev": "mustache config/chiliz-dev.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiliz": "mustache config/chiliz.json subgraph.template.yaml > subgraph.yaml",
"prepare:base-sepolia": "mustache config/base-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:base": "mustache config/base.json subgraph.template.yaml > subgraph.yaml",
"prepare:ape-curtis": "mustache config/ape-curtis.json subgraph.template.yaml > subgraph.yaml",
"prepare:ape": "mustache config/ape.json subgraph.template.yaml > subgraph.yaml",
"prepare:arbitrium-sepolia": "mustache config/arbitrium-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:arbitrium": "mustache config/arbitrium.json subgraph.template.yaml > subgraph.yaml",
"prepare:linea-sepolia": "mustache config/linea-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:linea": "mustache config/linea.json subgraph.template.yaml > subgraph.yaml",
"prepare:celo-dev": "mustache config/celo-dev.json subgraph.template.yaml > subgraph.yaml",
"prepare:celo": "mustache config/celo.json subgraph.template.yaml > subgraph.yaml",
"prepare:polygon-amoy": "mustache config/polygon-amoy.json subgraph.template.yaml > subgraph.yaml",
"prepare:polygon": "mustache config/polygon.json subgraph.template.yaml > subgraph.yaml",
"prepare:mantle-sepolia": "mustache config/mantle-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:mantle": "mustache config/mantle.json subgraph.template.yaml > subgraph.yaml",
"deploy:ethereum": "goldsky subgraph deploy poaps-ethereum/1.0.0",
"deploy:gnosis": "goldsky subgraph deploy poaps-gnosis/1.0.0",
"deploy:chiado": "goldsky subgraph deploy poaps-chiado/1.0.0",
"deploy:sepolia": "goldsky subgraph deploy poaps-sepolia/1.0.0",
"deploy:chiliz-dev": "goldsky subgraph deploy poaps-chiliz-dev/1.0.0",
"deploy:chiliz": "goldsky subgraph deploy poaps-chiliz/1.0.0",
"deploy:base-sepolia": "goldsky subgraph deploy poaps-base-sepolia/1.0.0",
"deploy:base": "goldsky subgraph deploy poaps-base/1.0.0",
"deploy:ape-curtis": "goldsky subgraph deploy poaps-ape-curtis/1.0.0",
"deploy:ape": "goldsky subgraph deploy poaps-ape/1.0.0",
"deploy:arbitrium-sepolia": "goldsky subgraph deploy poaps-arbitrium-sepolia/1.0.0",
"deploy:arbitrium": "goldsky subgraph deploy poaps-arbitrium/1.0.0",
"deploy:linea-sepolia": "goldsky subgraph deploy poaps-linea-sepolia/1.0.0",
"deploy:linea": "goldsky subgraph deploy poaps-linea/1.0.0",
"deploy:celo-dev": "goldsky subgraph deploy poaps-celo-dev/1.0.0",
"deploy:celo": "goldsky subgraph deploy poaps-celo/1.0.0",
"deploy:polygon-amoy": "goldsky subgraph deploy poaps-polygon-amoy/1.0.0",
"deploy:polygon": "goldsky subgraph deploy poaps-polygon/1.0.0",
"deploy:mantle-sepolia": "goldsky subgraph deploy poaps-mantle-sepolia/1.0.0",
"deploy:mantle": "goldsky subgraph deploy poaps-mantle/1.0.0",
"create-local": "graph create --node http://localhost:8020/ poap-xyz/poap",
"remove-local": "graph remove --node http://localhost:8020/ poap-xyz/poap",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 poap-xyz/poap"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.18.0"
},
"devDependencies": {
"mustache": "^4.0.1"
}
}