(front) Update to Angular 17

npm update

man update
This commit is contained in:
2024-01-24 00:36:43 +01:00
parent eb13944e46
commit e7af7f471f
3 changed files with 1712 additions and 2633 deletions

View File

@@ -68,18 +68,18 @@
"serve": { "serve": {
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",
"options": { "options": {
"browserTarget": "dashboard:build" "buildTarget": "dashboard:build"
}, },
"configurations": { "configurations": {
"production": { "production": {
"browserTarget": "dashboard:build:production" "buildTarget": "dashboard:build:production"
} }
} }
}, },
"extract-i18n": { "extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n", "builder": "@angular-devkit/build-angular:extract-i18n",
"options": { "options": {
"browserTarget": "dashboard:build" "buildTarget": "dashboard:build"
} }
}, },
"test": { "test": {

File diff suppressed because it is too large Load Diff

View File

@@ -11,38 +11,38 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^16.2.12", "@angular/animations": "^17.1.0",
"@angular/common": "^16.2.12", "@angular/common": "^17.1.0",
"@angular/compiler": "^16.2.12", "@angular/compiler": "^17.1.0",
"@angular/core": "^16.2.12", "@angular/core": "^17.1.0",
"@angular/forms": "^16.2.12", "@angular/forms": "^17.1.0",
"@angular/localize": "^16.2.12", "@angular/localize": "^17.1.0",
"@angular/platform-browser": "^16.2.12", "@angular/platform-browser": "^17.1.0",
"@angular/platform-browser-dynamic": "^16.2.12", "@angular/platform-browser-dynamic": "^17.1.0",
"@angular/router": "^16.2.12", "@angular/router": "^17.1.0",
"@ng-bootstrap/ng-bootstrap": "^15.1.2", "@ng-bootstrap/ng-bootstrap": "^16.0.0",
"bootstrap": "^3.4.1", "bootstrap": "^3.4.1",
"rxjs": "~6.6.0", "rxjs": "~7.8.1",
"tslib": "^2.6.2", "tslib": "^2.6.2",
"zone.js": "^0.13.3" "zone.js": "^0.14.3"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^16.2.11", "@angular-devkit/build-angular": "^17.1.0",
"@angular/cli": "^16.2.11", "@angular/cli": "^17.1.0",
"@angular/compiler-cli": "^16.2.12", "@angular/compiler-cli": "^17.1.0",
"@types/jasmine": "~3.6.0", "@types/jasmine": "~5.1.4",
"@types/node": "^12.20.55", "@types/node": "^20.11.5",
"codelyzer": "^6.0.2", "codelyzer": "^6.0.2",
"jasmine-core": "~5.1.1", "jasmine-core": "~5.1.1",
"jasmine-spec-reporter": "~5.0.0", "jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4", "karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.0", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.0.3", "karma-coverage": "~2.2.1",
"karma-jasmine": "~4.0.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^1.7.0", "karma-jasmine-html-reporter": "^2.1.0",
"protractor": "~7.0.0", "protractor": "~7.0.0",
"ts-node": "~8.3.0", "ts-node": "~10.9.2",
"tslint": "~6.1.0", "tslint": "~6.1.0",
"typescript": "~4.9.5" "typescript": "~5.3.3"
} }
} }