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,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@agm/core": "^3.0.0-beta.0",
|
"@agm/core": "^3.0.0-beta.0",
|
||||||
"@angular/animations": "^17.3.12",
|
"@angular/animations": "^18.2.10",
|
||||||
"@angular/common": "^17.3.12",
|
"@angular/common": "^18.2.10",
|
||||||
"@angular/compiler": "^17.3.12",
|
"@angular/compiler": "^18.2.10",
|
||||||
"@angular/core": "^17.3.12",
|
"@angular/core": "^18.2.10",
|
||||||
"@angular/fire": "^7.0.4",
|
"@angular/fire": "^7.0.4",
|
||||||
"@angular/forms": "^17.3.12",
|
"@angular/forms": "^18.2.10",
|
||||||
"@angular/platform-browser": "^17.3.12",
|
"@angular/platform-browser": "^18.2.10",
|
||||||
"@angular/platform-browser-dynamic": "^17.3.12",
|
"@angular/platform-browser-dynamic": "^18.2.10",
|
||||||
"@angular/router": "^17.3.12",
|
"@angular/router": "^18.2.10",
|
||||||
"@types/googlemaps": "^3.39.12",
|
"@types/googlemaps": "^3.39.12",
|
||||||
"core-js": "^3.30.2",
|
"core-js": "^3.30.2",
|
||||||
"firebase": "^9.22.1",
|
"firebase": "^9.22.1",
|
||||||
|
@ -31,11 +31,11 @@
|
||||||
"zone.js": "~0.14.10"
|
"zone.js": "~0.14.10"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/architect": "0.1703.11",
|
"@angular-devkit/architect": "0.1802.11",
|
||||||
"@angular-devkit/build-angular": "^17.3.11",
|
"@angular-devkit/build-angular": "^18.2.11",
|
||||||
"@angular/cli": "^17.3.11",
|
"@angular/cli": "^18.2.11",
|
||||||
"@angular/compiler-cli": "^17.3.12",
|
"@angular/compiler-cli": "^18.2.10",
|
||||||
"@angular/language-service": "^17.3.12",
|
"@angular/language-service": "^18.2.10",
|
||||||
"@types/jasmine": "~3.6.2",
|
"@types/jasmine": "~3.6.2",
|
||||||
"@types/jasminewd2": "~2.0.8",
|
"@types/jasminewd2": "~2.0.8",
|
||||||
"@types/node": "^14.14.10",
|
"@types/node": "^14.14.10",
|
||||||
|
|
|
@ -20,39 +20,33 @@ import { AppRoutingModule } from './app-routing.module';
|
||||||
import { AgmCoreModule } from '@agm/core';
|
import { AgmCoreModule } from '@agm/core';
|
||||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||||
import { ServicesService } from './services.service';
|
import { ServicesService } from './services.service';
|
||||||
import { HttpClientModule } from '@angular/common/http';
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({ declarations: [
|
||||||
declarations: [
|
AppComponent,
|
||||||
AppComponent,
|
HizmetlerimizComponent,
|
||||||
HizmetlerimizComponent,
|
SitegörselleriComponent,
|
||||||
SitegörselleriComponent,
|
GenelkurulComponent,
|
||||||
GenelkurulComponent,
|
FaaliyetComponent,
|
||||||
FaaliyetComponent,
|
KurumsalComponent,
|
||||||
KurumsalComponent,
|
FooterComponent,
|
||||||
FooterComponent,
|
IletisimComponent,
|
||||||
IletisimComponent,
|
DuyurularComponent,
|
||||||
DuyurularComponent,
|
AnasayfaComponent,
|
||||||
AnasayfaComponent,
|
Duyuru1Component,
|
||||||
Duyuru1Component,
|
Duyuru2Component,
|
||||||
Duyuru2Component,
|
Duyuru3Component,
|
||||||
Duyuru3Component,
|
SocialComponent,
|
||||||
SocialComponent,
|
NavigationComponent,
|
||||||
NavigationComponent,
|
],
|
||||||
],
|
bootstrap: [AppComponent], imports: [FormsModule,
|
||||||
imports: [
|
ReactiveFormsModule,
|
||||||
FormsModule,
|
BrowserModule,
|
||||||
ReactiveFormsModule,
|
AppRoutingModule,
|
||||||
HttpClientModule,
|
AgmCoreModule.forRoot({
|
||||||
BrowserModule,
|
apiKey: 'AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I'
|
||||||
AppRoutingModule,
|
})], providers: [
|
||||||
AgmCoreModule.forRoot({
|
ServicesService,
|
||||||
apiKey: 'AIzaSyC5TiZoTEwEcB_HUZRhe_rXrcSWW1Z5x8I'
|
provideHttpClient(withInterceptorsFromDi())
|
||||||
})
|
] })
|
||||||
],
|
|
||||||
providers: [
|
|
||||||
ServicesService
|
|
||||||
],
|
|
||||||
bootstrap: [AppComponent]
|
|
||||||
})
|
|
||||||
export class AppModule {}
|
export class AppModule {}
|
||||||
|
|
Loading…
Reference in a new issue