-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"private": true,
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile '{,projects/**/}package.json'",
"prepare": "husky || true"
},
"workspaces": [
"projects/lib",
"projects/docs",
"projects/tests"
],
"devDependencies": {
"@angular-devkit/core": "^18.2.7",
"@angular-devkit/schematics": "^18.2.7",
"@angular/cli": "^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",
"@schematics/angular": "^18.2.7",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.7.4",
"@types/semver": "^7.5.8",
"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-spec-reporter": "^7.0.0",
"lint-staged": "^15.2.10",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,json,ts,html}": [
"eslint --fix"
]
}
}