-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "makerdao-governance-subgraph",
"version": "1.5.1",
"license": "UNLICENSED",
"scripts": {
"build": "graph build",
"codegen": "graph codegen",
"create-local": "graph create --node http://localhost:8020/ protofire/makerdao-governance",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ protofire/makerdao-governance",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 protofire/makerdao-governance",
"remove-local": "graph remove --node http://localhost:8020/ protofire/makerdao-governance"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.16.2",
"@graphprotocol/graph-ts": "0.16.0"
},
"devDependencies": {
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"prettier": "1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,json,graphql,md}": [
"prettier --write",
"git add"
]
}
}