-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 3.37 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
{
"name": "subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy-mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards",
"deploy-mainnet-alt": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-mainnet",
"build-goerli": "graph build ./subgraph.goerli.yaml",
"deploy-goerli": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-goerli ./subgraph.goerli.yaml",
"deploy-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-rinkeby ./subgraph.rinkeby.yaml",
"deploy-mumbai": "graph deploy --node https://mumbai-graph.matic.today --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-mumbai ./subgraph.mumbai.yaml",
"create-mumbai": "graph create --node https://mumbai-graph.matic.today wildcards-world/wildcards-mumbai",
"deploy-mumbai-test": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-polygon-testnet ./subgraph.mumbai.yaml",
"deploy-polygon": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ wildcards-world/wildcards-polygon ./subgraph.polygon.yaml",
"create-mumbai-local": "graph create --node http://localhost:8020/ wildcards-world/wildcards-mumbai",
"create-test-local": "graph create wildcards-world/wildcards-mumbai --node http://127.0.0.1:8020",
"create-local": "graph create --node http://localhost:8020/ wild-cards/subgraph",
"graph": "graph",
"remove-local": "graph remove --node http://localhost:8020/ wild-cards/subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 wild-cards/subgraph ./subgraph.local.yaml",
"deploy-test-local": "graph deploy -l v0.0.1 --node http://localhost:8020/ --ipfs http://localhost:5001 wildcards-world/wildcards-mumbai ./subgraph.polygon.local.yaml",
"deploy-mumbai-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 wildcards-world/wildcards-mumbai ./subgraph.mumbai.yaml",
"deploy-matic-local": "graph deploy --node http://localhost:8120/ --ipfs http://localhost:5101 wildcards-world/wildcards-matic ./subgraph.matic.yaml",
"res:start": "rescript build -w",
"res:clean": "rescript clean",
"test-codegen": "node ./integrationTests/util/Codegen.bs.js",
"update-test-schema": "get-graphql-schema http://127.0.0.1:8000/subgraphs/name/wildcards-world/wildcards-mumbai -j > graphql_schema.json",
"integration-test": "jest test ./integrationTests"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@graphprotocol/graph-cli": "^0.18.0",
"@graphprotocol/graph-ts": "^0.18.1",
"@reasonml-community/graphql-ppx": "^1.2.2",
"@rescript/react": "^0.10.3",
"assemblyscript": "0.9.2",
"decco": "^1.5.0",
"ethers": "^5.4.7",
"get-graphql-schema": "^2.1.2",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.2.0",
"react": "^17.0.2",
"reason-test-framework": "^0.3.2",
"rescript": "^9.1.4",
"rescript-apollo-client": "^2.1.2",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"dotenv": "^10.0.0"
}
}