-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1022 Bytes
/
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
{
"name": "merge-v1",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ umphams/merge-v1",
"create-local": "graph create --node http://localhost:8020/ umphams/merge-v1",
"remove-local": "graph remove --node http://localhost:8020/ umphams/merge-v1",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 umphams/merge-v1",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/*.ts'"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.27.0",
"@graphprotocol/graph-ts": "0.24.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.6.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"eslint": "^8.11.0"
}
}