-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"private": true,
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile '{,projects/**/}package.json'",
"prepare": "husky || true"
},
"workspaces": [
"projects/lib"
],
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.7",
"@angular/cli": "~18.2.7",
"@angular/compiler": "^18.2.7",
"@angular/compiler-cli": "^18.2.7",
"@angular/platform-browser-dynamic": "^18.2.7",
"@colors/colors": "^1.6.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@hug/eslint-config": "^20.3.2",
"@types/jasmine": "~5.1.4",
"chokidar": "^3.6.0",
"cpy": "^11.1.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"jasmine": "^5.3.0",
"jasmine-core": "~5.3.0",
"jasmine-spec-reporter": "^7.0.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",
"ts-node-dev": "^2.0.0",
"tslib": "^2.7.0",
"typescript": "~5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,json,ts,html}": [
"eslint --fix"
]
}
}