forked from cerc-io/watcher-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 889 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 889 Bytes
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
{
"name": "watcher-ts",
"license": "AGPL-3.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@types/level"
]
},
"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 --ignore @cerc-io/peer",
"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",
"version:set-codegen": "yarn workspace @cerc-io/codegen version:set"
}
}