-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.18 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"private": true,
"scripts": {
"ncu": "npx npm-check-updates -i --dep=dev,peer,optional,prod --format=group --packageFile='{,projects/**/}package.json'",
"prepare": "husky || true",
"new-package": "ng g .:new-package",
"prettier": "prettier . --write",
"lint": "nx run-many -t lint --verbose --exclude=story-book",
"test:ci": "nx run-many -t test:ci --exclude=story-book",
"build": "nx run-many -t build:ng --exclude=story-book ----verbose",
"release": "node -r @swc-node/register ./scripts/release.ts --verbose",
"release:dry-run": "npm run release -- --dry-run",
"postinstall": "patch-package"
},
"workspaces": [
"projects/core",
"projects/date-picker",
"projects/layout",
"projects/list-loader",
"projects/message-box",
"projects/message-box-dialog",
"projects/numeric-stepper",
"projects/overlay",
"projects/search-container",
"projects/sidenav",
"projects/snackbar",
"projects/splitter",
"projects/status",
"projects/story-book",
"projects/time-picker",
"projects/tooltip",
"projects/user-card",
"projects/user-tooltip"
],
"devDependencies": {
"@angular/platform-browser-dynamic": "~18.2.6",
"@angular-devkit/build-angular": "~18.2.6",
"@angular/cli": "~18.2.6",
"@angular/compiler-cli": "~18.2.6",
"@commitlint/cli": "~19.5.0",
"@commitlint/config-conventional": "~19.5.0",
"@hug/eslint-config": "~20.3.1",
"@hug/ngx-schematics-utilities": "^10.1.3",
"@nx/js": "^19.8.3",
"@swc-node/register": "^1.10.9",
"@swc/helpers": "^0.5.13",
"@types/jasmine": "~5.1.4",
"@types/lodash-es": "^4.17.12",
"detect-indent": "^7.0.1",
"husky": "~9.1.6",
"jasmine-core": "~5.3.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lint-staged": "~15.2.10",
"ng-packagr": "~18.2.1",
"nx": "^19.8.3",
"patch-package": "^8.0.0",
"prettier": "3.3.3",
"prettier-plugin-multiline-arrays": "^3.0.6",
"typescript": "~5.5.4"
},
"schematics": "./scripts/new-package/collection.json",
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"deps"
]
]
}
},
"lint-staged": {
"**/*.{js,ts,html,json}": [
"eslint --fix"
],
"**/*.{scss,html,json}": [
"prettier . --check"
]
}
}