-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 3.32 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
{
"name": "joe-subgraph-v2",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"prepare:avax": "mustache config/avax.json src/constants/index.template.ts > src/constants/index.ts && mustache config/avax.json subgraph.template.yaml > subgraph.avax.yaml",
"prepare:fuji": "mustache config/fuji.json src/constants/index.template.ts > src/constants/index.ts && mustache config/fuji.json subgraph.template.yaml > subgraph.fuji.yaml",
"prepare:arbgoerli": "mustache config/arbgoerli.json src/constants/index.template.ts > src/constants/index.ts && mustache config/arbgoerli.json subgraph.template.yaml > subgraph.arbgoerli.yaml",
"prepare:arbitrum": "mustache config/arbitrum.json src/constants/index.template.ts > src/constants/index.ts && mustache config/arbitrum.json subgraph.template.yaml > subgraph.arbitrum.yaml",
"prepare:bsc": "mustache config/bsc.json src/constants/index.template.ts > src/constants/index.ts && mustache config/bsc.json subgraph.template.yaml > subgraph.bsc.yaml",
"prepare:chapel": "mustache config/chapel.json src/constants/index.template.ts > src/constants/index.ts && mustache config/chapel.json subgraph.template.yaml > subgraph.chapel.yaml",
"codegen:avax": "graph codegen subgraph.avax.yaml",
"codegen:fuji": "graph codegen subgraph.fuji.yaml",
"codegen:arbgoerli": "graph codegen subgraph.arbgoerli.yaml",
"codegen:arbitrum": "graph codegen subgraph.arbitrum.yaml",
"codegen:bsc": "graph codegen subgraph.bsc.yaml",
"codegen:chapel": "graph codegen subgraph.chapel.yaml",
"build:avax": "graph build subgraph.avax.yaml",
"build:fuji": "graph build subgraph.fuji.yaml",
"build:arbgoerli": "graph build subgraph.arbgoerli.yaml",
"build:arbitrum": "graph build subgraph.arbitrum.yaml",
"build:bsc": "graph build subgraph.bsc.yaml",
"build:chapel": "graph build subgraph.chapel.yaml",
"deploy:avax": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2 subgraph.avax.yaml",
"deploy:fuji": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-fuji subgraph.fuji.yaml",
"deploy:arbgoerli": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-arb-goerli subgraph.arbgoerli.yaml",
"deploy:arbitrum": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-arbitrum subgraph.arbitrum.yaml",
"deploy:staging": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-staging subgraph.arbitrum.yaml",
"deploy:bsc": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-bnb subgraph.bsc.yaml",
"deploy:chapel": "graph deploy --node https://api.thegraph.com/deploy/ traderjoe-xyz/joe-v2-bnbtest subgraph.chapel.yaml",
"create-local": "graph create --node http://localhost:8020/ traderjoe-xyz/joe-v2-fuji",
"remove-local": "graph remove --node http://localhost:8020/ traderjoe-xyz/joe-v2-fuji",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 traderjoe-xyz/joe-v2-fuji",
"start:node": "rm -rf ./graph_data && docker-compose up -d"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.32.0",
"@graphprotocol/graph-ts": "0.27.0",
"mustache": "^4.1.0"
},
"repository": "https://github.com/traderjoe-xyz/joe-subgraph-v2.git",
"author": "traderjoexyz",
"license": "MIT"
}