This repository was archived by the owner on Jan 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.5 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.5 KB
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": "beanstalk",
"license": "MIT License",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"test": "graph test",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ beanstalk",
"create-local": "graph create --node http://graph.node.bean.money:8020/ beanstalk",
"remove-local": "graph remove --node http://graph.node.bean.money:8020/ beanstalk",
"deploy-local": "graph deploy --node http://graph.node.bean.money:8020/ --ipfs http://graph.node.bean.money:5001 beanstalk",
"create-local-dev": "graph create --node http://graph.node.bean.money:8020/ beanstalk-dev",
"remove-local-dev": "graph remove --node http://graph.node.bean.money:8020/ beanstalk-dev",
"deploy-local-dev": "graph deploy --node http://graph.node.bean.money:8020/ --ipfs http://graph.node.bean.money:5001 beanstalk-dev",
"create-local-test": "graph create --node http://graph.node.bean.money:8020/ beanstalk-testing",
"remove-local-test": "graph remove --node http://graph.node.bean.money:8020/ beanstalk-testing",
"deploy-local-test": "graph deploy --node http://graph.node.bean.money:8020/ --ipfs http://graph.node.bean.money:5001 beanstalk-testing",
"deploy-hosted": "graph deploy --product hosted-service cujowolf/beanstalk",
"deploy-hosted-dev": "graph deploy --product hosted-service cujowolf/beanstalk-dev"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.30.4",
"@graphprotocol/graph-ts": "^0.27.0",
"matchstick-as": "^0.5.0"
}
}