-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 882 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
{
"private": true,
"type": "module",
"workspaces": [
"docs",
"packages/*",
"packages/@slithe/*",
"shared/*"
],
"scripts": {
"prepare": "husky install",
"commitlint": "commitlint --edit",
"generate": "nx run slithe:generate",
"dev": "nx run-many -t dev --output-style=stream",
"build": "nx run-many -t build --output-style=stream",
"test": "nx run-many -t test --output-style=stream",
"lint": "nx run-many -t lint --output-style=stream",
"preview": "nx run docs:preview",
"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",
"husky": "^8.0.3",
"lerna": "^8.1.8",
"nx": "^20.0.5",
"vertis": "^0.4.0"
}
}