-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.68 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": "dgrants-subgraph",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext .ts --ext .js --ext .json",
"lint:fix": "eslint --ext .ts --ext .js --ext .json --fix",
"graph": "graph",
"codegen": "graph codegen",
"build": "graph build",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:matic-staging": "mustache config/matic-staging.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"deploy:matic": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dcgtc/dc-gitcoin-grants-matic",
"deploy:matic-staging": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dcgtc/dc-gitcoin-grants-matic-staging",
"deploy:rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dcgtc/dc-gitcoin-grants-rinkeby",
"create-local": "graph create --node http://localhost:8020/ dcgtc/dgrants-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ dcgtc/dgrants-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 dcgtc/dcgrants-subgraph"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.22.0-alpha.3"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.22.0-alpha.3",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-unicorn": "^24.0.0",
"mustache": "4.0.1",
"typescript": "^4.1.3"
}
}