mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 12:26:19 +00:00
bd8f003322
* Gracefully shutdown server * Forbid lint warnings * Avoid setting subgraph path in template contex in codegen
29 lines
767 B
JSON
29 lines
767 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 -- --max-warnings=0",
|
|
"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",
|
|
"version:set": "lerna version --no-git-tag-version"
|
|
}
|
|
}
|