-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 KB
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
{
"name": "arc-ng-components",
"description": "This is the root package and will never be served via a web server",
"private": true,
"workspaces": [
"packages/search/projects/*",
"packages/user-onboarding/projects/*"
],
"scripts": {
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"test": "lerna run test",
"clean": "npm run clean --workspaces --if-present"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.0",
"@angular/cdk": "^21.0.2",
"@angular/cli": "^21.0.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/config-lerna-scopes": "^19.8.1",
"@types/fs-extra": "^11.0.1",
"@types/jasmine": "~3.8.0",
"@types/node": "18.7.8",
"commitizen": "^4.2.5",
"concat": "1.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"fs-extra": "^11.1.0",
"husky": "^7.0.4",
"jasmine-core": "~3.8.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lerna": "^9.0.7",
"ng-packagr": "^21.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.9.1",
"typescript": "5.9.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}