Updated the angular version.
This commit is contained in:
parent
0efdbd4589
commit
714e23dfae
3 changed files with 5535 additions and 2629 deletions
8076
package-lock.json
generated
8076
package-lock.json
generated
File diff suppressed because it is too large
Load diff
26
package.json
26
package.json
|
@ -12,15 +12,15 @@
|
|||
"private": true,
|
||||
"dependencies": {
|
||||
"@agm/core": "^3.0.0-beta.0",
|
||||
"@angular/animations": "^17.3.12",
|
||||
"@angular/common": "^17.3.12",
|
||||
"@angular/compiler": "^17.3.12",
|
||||
"@angular/core": "^17.3.12",
|
||||
"@angular/animations": "^18.2.10",
|
||||
"@angular/common": "^18.2.10",
|
||||
"@angular/compiler": "^18.2.10",
|
||||
"@angular/core": "^18.2.10",
|
||||
"@angular/fire": "^7.0.4",
|
||||
"@angular/forms": "^17.3.12",
|
||||
"@angular/platform-browser": "^17.3.12",
|
||||
"@angular/platform-browser-dynamic": "^17.3.12",
|
||||
"@angular/router": "^17.3.12",
|
||||
"@angular/forms": "^18.2.10",
|
||||
"@angular/platform-browser": "^18.2.10",
|
||||
"@angular/platform-browser-dynamic": "^18.2.10",
|
||||
"@angular/router": "^18.2.10",
|
||||
"@types/googlemaps": "^3.39.12",
|
||||
"core-js": "^3.30.2",
|
||||
"firebase": "^9.22.1",
|
||||
|
@ -31,11 +31,11 @@
|
|||
"zone.js": "~0.14.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/architect": "0.1703.11",
|
||||
"@angular-devkit/build-angular": "^17.3.11",
|
||||
"@angular/cli": "^17.3.11",
|
||||
"@angular/compiler-cli": "^17.3.12",
|
||||
"@angular/language-service": "^17.3.12",
|
||||
"@angular-devkit/architect": "0.1802.11",
|
||||
"@angular-devkit/build-angular": "^18.2.11",
|
||||
"@angular/cli": "^18.2.11",
|
||||
"@angular/compiler-cli": "^18.2.10",
|
||||
"@angular/language-service": "^18.2.10",
|
||||
"@types/jasmine": "~3.6.2",
|
||||
"@types/jasminewd2": "~2.0.8",
|
||||
"@types/node": "^14.14.10",
|
||||
|
|
|
@ -20,39 +20,33 @@ import { AppRoutingModule } from './app-routing.module';
|
|||
import { AgmCoreModule } from '@agm/core';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { ServicesService } from './services.service';
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
HizmetlerimizComponent,
|
||||
SitegörselleriComponent,
|
||||
GenelkurulComponent,
|
||||
FaaliyetComponent,
|
||||
KurumsalComponent,
|
||||
FooterComponent,
|
||||
IletisimComponent,
|
||||
DuyurularComponent,
|
||||
AnasayfaComponent,
|
||||
Duyuru1Component,
|
||||
Duyuru2Component,
|
||||
Duyuru3Component,
|
||||
SocialComponent,
|
||||
NavigationComponent,
|
||||
],
|
||||
imports: [
|
||||
FormsModule,
|
||||
ReactiveFormsModule,
|
||||
HttpClientModule,
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
AgmCoreModule.forRoot({
|
||||
apiKey: 'AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I'
|
||||
})
|
||||
],
|
||||
providers: [
|
||||
ServicesService
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
@NgModule({ declarations: [
|
||||
AppComponent,
|
||||
HizmetlerimizComponent,
|
||||
SitegörselleriComponent,
|
||||
GenelkurulComponent,
|
||||
FaaliyetComponent,
|
||||
KurumsalComponent,
|
||||
FooterComponent,
|
||||
IletisimComponent,
|
||||
DuyurularComponent,
|
||||
AnasayfaComponent,
|
||||
Duyuru1Component,
|
||||
Duyuru2Component,
|
||||
Duyuru3Component,
|
||||
SocialComponent,
|
||||
NavigationComponent,
|
||||
],
|
||||
bootstrap: [AppComponent], imports: [FormsModule,
|
||||
ReactiveFormsModule,
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
AgmCoreModule.forRoot({
|
||||
apiKey: 'AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I'
|
||||
})], providers: [
|
||||
ServicesService,
|
||||
provideHttpClient(withInterceptorsFromDi())
|
||||
] })
|
||||
export class AppModule {}
|
||||
|
|
Loading…
Reference in a new issue