-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
33 lines (33 loc) · 1.26 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
{
"name": "root",
"private": true,
"scripts": {
"watch": "lerna run watch --parallel",
"test": "lerna run test",
"test:ci:changed": "lerna run test:ci --since origin/main --parallel",
"test:ci:all": "lerna run test:ci --parallel",
"build": "lerna run build",
"build:ci": "lerna run build",
"postinstall": "lerna bootstrap",
"prettier": "prettier --config .prettierrc.yml --write --ignore-unknown \"**/*\"",
"prettier:check": "npx [email protected] --config .prettierrc.yml --check --ignore-unknown \"**/*\"",
"version:update": "lerna run version:update",
"version": "git add packages/**/version.ts",
"publish:ci": "lerna publish --yes --no-verify-access --allow-branch main --create-release github --conventionalCommits",
"publish:ci:prerelease": "lerna publish --yes --no-verify-access --no-git-tag-version --no-push --no-changelog --dist-tag alpha"
},
"devDependencies": {
"lerna": "^3.22.1",
"prettier": "2.3.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/mocha",
"**/ts-node"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}