-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 980 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
36
37
38
{
"private": true,
"workspaces": [
"apps/*",
"libs/*"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"build.all": "npx nx run-many --target=build",
"commit": "npx cz",
"coverage": "open libs/core/coverage/lcov-report/index.html",
"deploy": "npx nx run-many -t deploy -p core",
"lint.all": "npx nx run-many --target=lint",
"setup": "npm install",
"start": "npx nx run-many -t start",
"stencil.generate": "npx nx run @pine-ds/core:generate",
"test.all": "npx nx run-many --target=test"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"commitizen": "^4.2.5",
"lefthook": "^1.8.2",
"lerna": "^7.0.1",
"lint-staged": "^13.0.3",
"nx": "^19.1.0",
"nx-cloud": "latest",
"semver": "^7.3.8",
"validate-branch-name": "^1.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}