-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.67 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
{
"name": "OpenQ-Graph",
"license": "UNLICENSED",
"private": true,
"version": "1.0.0",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"test": "graph test",
"prepare-local": "mustache config/local.json subgraph.yaml.mustache > subgraph.yaml",
"prepare-staging": "mustache config/staging.json subgraph.yaml.mustache > subgraph.yaml",
"prepare-production": "mustache config/production.json subgraph.yaml.mustache > subgraph.yaml",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 --version-label 1.0.0 openqdev/openq",
"deploy-staging": "graph deploy --node https://api.thegraph.com/deploy/ openqdev/openq-staging",
"deploy-production": "graph deploy --node https://api.thegraph.com/deploy/ openqdev/openq",
"create-local": "graph create --node http://localhost:8020/ openqdev/openq",
"remove-local": "graph remove --node http://localhost:8020/ openqdev/openq",
"create-docker": "graph create --node http://graph_node:8020/ openqdev/openq",
"remove-docker": "graph remove --node http://graph_node:8020/ openqdev/openq",
"deploy-docker": "graph deploy --node http://graph_node:8020/ --ipfs http://ipfs:5001/ --version-label 1.0.0 openqdev/openq",
"inject-contract-address-to-local-config": "node inject-contract-address-to-local-config.js",
"boot:local": "yarn prepare-local && yarn codegen && yarn create-local && yarn deploy-local"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.46.1",
"@graphprotocol/graph-ts": "0.28.1",
"dotenv": "16.0.0",
"fs": "0.0.1-security",
"mustache": "4.2.0",
"path": "0.12.7",
"@ethersproject/bignumber": "5.7.0"
}
}