forked from rmourey26/yearn-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.55 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
{
"name": "da-fi-entropy1",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy $GRAPH_PATH --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ --access-token $ACCESS_TOKEN",
"create": "graph create $GRAPH_PATH --node https://api.thegraph.com/deploy/",
"create-local": "graph create $GRAPH_PATH --node http://localhost:8020/",
"remove-local": "graph remove $GRAPH_PATH --node http://localhost:8020/",
"deploy-local": "graph deploy $GRAPH_PATH --node http://localhost:8020/ --ipfs http://localhost:5001",
"publish-graph": "yarn codegen && yarn deploy",
"lint:check": "eslint src --rulesdir . && prettier --check **/*.json **/*.md",
"lint:fix": "eslint src --rulesdir . --fix && prettier --config .prettierrc.json --write **/*.js **/*.md"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.18.0",
"@graphprotocol/graph-ts": "^0.18.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}