forked from pine-finance/orders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.38 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": "pine_finance_orders",
"version": "0.1.1",
"scripts": {
"codegen": "graph codegen --debug --output-dir src/entities/",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"prepare:bsc": "mustache config/bsc.json subgraph.template.yaml > subgraph.yaml",
"deploy:mainnet": "npm run prepare:mainnet && npx graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ pine-finance/pine_orders",
"deploy:rinkeby": "npm run prepare:rinkeby && npx graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ pine-finance/pine_orders_rinkeby",
"deploy:bsc": "npm run prepare:bsc && npx graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ miaoluyao/elephantswapsv2"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.21.1",
"@graphprotocol/graph-ts": "^0.18.0",
"mustache": "^4.0.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"prettier": "^1.19.1",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4",
"tslint-plugin-prettier": "^2.0.1"
}
}