-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.53 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "root",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "lerna run build && ng build @baloise/web-app-ng-utils",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"format:check": "prettier --check ./projects",
"format": "prettier --write ./projects",
"prepare": "husky install",
"precommit": "lint-staged --allow-empty",
"link": "cd dist && npm link",
"update:lock": "lerna exec -- npm install --package-lock-only",
"release": "lerna publish --conventional-commits --exact --force-publish --yes",
"release:canary": "lerna publish prepatch --canary --preid beta --dist-tag beta --exact --force-publish --yes --no-changelog",
"update:registry": "lerna run update:registry && sed -i -e \"s#nexus.balgroupit.com/repository/npm#registry.npmjs.org#g\" package-lock.json\n"
},
"private": true,
"dependencies": {
"@angular/animations": "~20.0.6",
"@angular/common": "~20.0.6",
"@angular/compiler": "~20.0.6",
"@angular/core": "~20.0.6",
"@angular/forms": "~20.0.6",
"@angular/platform-browser": "~20.0.6",
"@angular/platform-browser-dynamic": "~20.0.6",
"@angular/router": "~20.0.6",
"@baloise/ds-angular-module": ">=19.3.0",
"@baloise/ds-css": "~17.4.1",
"@baloise/ds-styles": "19.3.0",
"@baloise/web-app-google-utils": "~1.2.0",
"lodash.isboolean": "~3.0.3",
"lodash.isequal": "~4.5.0",
"lodash.isnumber": "~3.0.3",
"lodash.isstring": "~4.0.1",
"query-string": "~7.0.0",
"rxjs": "~7.5.7",
"tslib": "~2.3.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "~20.0.5",
"@angular/cli": "~20.0.5",
"@angular/compiler-cli": "~20.0.6",
"@baloise/ds-devkit": "19.3.0",
"@commitlint/cli": "~16.2.1",
"@commitlint/config-conventional": "~16.2.1",
"@types/jasmine": "~3.10.0",
"@types/lodash.isboolean": "^3.0.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.isnumber": "^3.0.6",
"@types/lodash.isstring": "^4.0.6",
"@types/luxon": "^3.6.2",
"@types/node": "^20.19.6",
"conventional-changelog-conventionalcommits": "~4.6.3",
"husky": "~7.0.4",
"jasmine-core": "~3.10.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lerna": "~6.5.1",
"lint-staged": "~12.3.4",
"ng-packagr": "~20.0.1",
"prettier": "~2.5.1",
"rimraf": "~3.0.2",
"typescript": "~5.8.3"
}
}