-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
{
"name": "monorepo-structure-poc",
"private": true,
"workspaces": [
"packages/**"
],
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@commitlint/config-lerna-scopes": "15.0.0",
"cz-conventional-changelog": "3.3.0",
"danger": "10.7.1",
"danger-plugin-toolbox": "1.30.0",
"husky": "7.0.4",
"lerna": "4.0.0"
},
"scripts": {
"bootstrap:build": "lerna clean --yes && yarn clean && yarn bootstrap:ci",
"bootstrap:ci": "lerna bootstrap --force-local --ci && yarn build",
"bootstrap": "lerna clean --yes && lerna bootstrap --force-local",
"build": "lerna run build --stream",
"clean": "lerna run clean --stream --parallel",
"list": "lerna list --long --all",
"postinstall": "husky install",
"publish": "lerna publish from-package --force-git-tag --include-merged-tags --exact --yes --no-verify-access",
"typecheck": "tsc --noEmit"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.20.0",
"node": ">= 14.0.0 <15.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}