watcher-ts/package.json

29 lines
747 B
JSON
Raw Normal View History

2021-05-10 09:06:55 +00:00
{
"name": "watcher-ts",
"license": "AGPL-3.0",
2021-05-10 09:06:55 +00:00
"private": true,
2021-09-22 13:41:25 +00:00
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts"
]
2021-09-22 13:41:25 +00:00
},
"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",
2022-11-23 12:53:26 +00:00
"publish:workspace": "yarn build && lerna publish",
"version:set": "lerna version --no-git-tag-version"
}
2021-05-10 09:06:55 +00:00
}