-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1.48 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
{
"name": "basisTradingStablecoinSubgraph",
"version": "0.1.0",
"scripts": {
"prepare:local": "mustache config/local.json subgraph.template.yaml > subgraph.yaml; mustache config/local.json const.template.ts > src/const.ts",
"prepare:arb-rinkeby": "mustache config/arb-rinkeby.json subgraph.template.yaml > subgraph.yaml; mustache config/arb-rinkeby.json const.template.ts > src/const.ts",
"prepare:arb-one": "mustache config/arb-one.json subgraph.template.yaml > subgraph.yaml; mustache config/arb-one.json const.template.ts > src/const.ts",
"build-contract": "solc contracts/Gravity.sol --abi -o abis --overwrite && solc contracts/Gravity.sol --bin -o bin --overwrite",
"create": "graph create yashnaman/basisTradingStablecoinSubgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create yashnaman/basisTradingStablecoinSubgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy yashnaman/basisTradingStablecoinSubgraph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy yashnaman/basisTradingStablecoinSubgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.22.1",
"@graphprotocol/graph-ts": "^0.22.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"dotenv": "^10.0.0",
"mustache": "^4.2.0"
}
}