-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.4 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
{
"name": "kte-subgraph",
"version": "0.1.0",
"scripts": {
"create": "graph create kyte-one/kte-subgraph --node https://api.thegraph.com/deploy/",
"create:local": "graph create kyte-one/kte-subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"deploy": "graph deploy kyte-one/kte-vesting-bsc --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:local": "graph deploy kyte-one/kte-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"format": "prettier --config ./.prettierrc --write '**/*.{js,ts,tsx,scss,css,md,json,graphql}'",
"prepare:local": "mustache config/local.json subgraph.template.yaml > subgraph.yaml",
"prepare:fuji": "mustache config/fuji.json subgraph.template.yaml > subgraph.yaml",
"prepare:avalanche": "mustache config/avalanche.json subgraph.template.yaml > subgraph.yaml",
"prepare:bsc": "mustache config/bsc.json subgraph.template.yaml > subgraph.yaml",
"kte:prepare:fuji": "mustache config/fuji.json kte.subgraph.template.yaml > kte.subgraph.yaml"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.22.4",
"@graphprotocol/graph-ts": "^0.22.1",
"prettier": "^2.4.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/subgraphs": "^0.1.7-1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"mustache": "^4.2.0"
}
}