-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"private": true,
"type": "module",
"workspaces": [
"docs",
"packages/*",
"packages/@mollitia/*",
"shared/*"
],
"scripts": {
"prepare": "husky install",
"commit": "cz",
"commitlint": "commitlint --edit",
"dev": "nx run-many -t dev --output-style=stream",
"build": "nx run-many -t build --output-style=stream",
"test": "nx run-many -t test:unit --output-style=stream",
"lint": "nx run-many -t lint --output-style=stream",
"clean": "nx run-many -t clean --output-style=stream && rm -rf node_modules",
"preview": "nx preview docs",
"version": "lerna version",
"changelog": "vertis generate",
"publish": "lerna publish from-package",
"release": "vertis release"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lerna": "^7.3.0",
"nx": "^16.9.1",
"vertis": "^0.2.0"
}
}