-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.35 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
{
"name": "tBTCv2-subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"prepare": "yarn husky install",
"lint": "eslint --ignore-path .linterignore",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --ignore-path .linterignore",
"format": "yarn prettier --check",
"format:fix": "yarn prettier --write",
"lint:format": "yarn format . && yarn lint .",
"lint:format:fix": "yarn format:fix . && yarn lint:fix .",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ tBTCv2",
"create-local": "graph create --node http://localhost:8020/ tBTCv2",
"remove-local": "graph remove --node http://localhost:8020/ tBTCv2",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 tBTCv2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@graphprotocol/graph-cli": "0.35.0",
"@graphprotocol/graph-ts": "0.28.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"matchstick-as": "0.5.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}