forked from yearn/yearn-vaults-v2-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.82 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "robo-vault-subgraph",
"version": "0.1.0",
"private": false,
"license": "MIT",
"scripts": {
"prepare:fantom": "mustache config/fantom.json subgraph.template.yaml > subgraph.yaml",
"codegen": "graph codegen",
"build:fantom": "yarn prepare:fantom && yarn codegen && graph build",
"deploy:fantom:dev": "yarn build:fantom && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ robovault/robo-vault-subgraph-dev",
"deploy:fantom:prod": "yarn build:fantom && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ robovault/robo-vault-subgraph-prod",
"create-local": "graph create --node http://127.0.0.1:8020/ robo-vault/subgraph",
"remove-local": "graph remove --node http://127.0.0.1:8020/ robo-vault/subgraph",
"deploy-local": "yarn build:fantom && graph deploy --node http://127.0.0.1:8020/ --ipfs http://localhost:5001 robo-vault/subgraph",
"release": "standard-version",
"test": "graph test -v 0.2.3",
"build:fixtures": "tsc -b && node ./tests/fixtureGenerator/out/main.js",
"lint:check": "prettier --check './**'",
"lint:fix": "sort-package-json && prettier --write ./**",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"clean": "rm -rf ./build && rm -rf ./tests/.bin"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.23.0",
"@graphprotocol/graph-ts": "^0.23.0",
"matchstick-as": "^0.2.0",
"mustache": "4.1.0",
"typescript": "^4.5.2",
"web3-eth": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"husky": "5.1.3",
"pinst": "2.1.6",
"prettier": "2.2.1",
"sort-package-json": "1.49.0",
"standard-version": "9.1.1"
}
}