-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.4 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
{
"name": "root",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "lerna run build && ng build",
"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": "~14.2.4",
"@angular/common": "~14.2.4",
"@angular/compiler": "~14.2.4",
"@angular/core": "~14.2.4",
"@angular/forms": "~14.2.4",
"@angular/platform-browser": "~14.2.4",
"@angular/platform-browser-dynamic": "~14.2.4",
"@angular/router": "~14.2.4",
"@baloise/design-system-components-angular": "13.3.1",
"@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.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.2.4",
"@angular/cli": "~14.2.4",
"@angular/compiler-cli": "~14.2.4",
"@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/node": "^12.11.1",
"conventional-changelog-conventionalcommits": "^4.6.3",
"husky": "^7.0.4",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"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": "^14.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "~4.6.2"
}
}