mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
nikugogoi
ce182bce85
* Clear cache of latest entities on event processing error * Remove lighthouse-watcher and update ethersjs version * Handle GraphDecimal type in state entity * Add option for comparing all entities using paginate * Clear pruned cached entities at intervals * Move ipld-demo to graph-node package and remove reset-dbs script * Implement changes in all watchers and codegen
24 lines
666 B
JSON
24 lines
666 B
JSON
{
|
|
"name": "watcher-ts",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": ["packages/*"],
|
|
"nohoist": ["**/@graphprotocol/graph-ts"]
|
|
},
|
|
"devDependencies": {
|
|
"depcheck": "^1.4.2",
|
|
"husky": "^7.0.2",
|
|
"lerna": "^4.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "lerna run lint --stream",
|
|
"test:init": "lerna run test:init --stream --ignore @cerc-io/*-watcher",
|
|
"test": "lerna run test --stream --ignore @cerc-io/*-watcher",
|
|
"build": "lerna run build --stream",
|
|
"build:watch": "lerna run build --stream --parallel -- -w",
|
|
"prepare": "husky install",
|
|
"publish:workspace": "yarn build && lerna publish"
|
|
}
|
|
}
|