liquid-funding-subgraph/subgraph/package.json

28 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-07 17:44:16 +00:00
{
2019-12-11 19:39:43 +00:00
"name": "liquid-funding",
2019-08-07 17:44:16 +00:00
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
2019-12-12 11:29:25 +00:00
"clean": "shx rm -rf ./build ./src/types ./subgraph.yaml",
"deploy": "graph deploy $SUBGRAPH --debug --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
2019-08-07 17:44:16 +00:00
"create-local": "graph create --node http://localhost:8020/ bgits/liquid-funding-rinkeby",
"remove-local": "graph remove --node http://localhost:8020/ bgits/liquid-funding-rinkeby",
2019-12-12 11:29:25 +00:00
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 bgits/liquid-funding-rinkeby",
"deploy:ropsten": "yarn prepare:ropsten && SUBGRAPH=bgits/liquid-funding-rinkeby yarn deploy",
"deploy:mainnet": "yarn prepare:mainnet && SUBGRAPH=bgits/assemble yarn deploy",
"prepare:ropsten": "NETWORK_NAME=ropsten node ./templatify.js",
"prepare:mainnet": "NETWORK_NAME=mainnet node ./templatify.js"
2019-08-07 17:44:16 +00:00
},
"dependencies": {
2019-11-25 19:58:04 +00:00
"@graphprotocol/graph-cli": "0.16.0",
2019-12-11 19:39:43 +00:00
"@graphprotocol/graph-ts": "0.16.0",
"axios": "^0.19.0",
"fs-extra": "^8.1.0",
"handlebars": "^4.5.2",
"js-yaml": "^3.13.1",
"shx": "^0.3.2",
"typy": "^3.3.0"
2019-08-07 17:44:16 +00:00
}
}