1
0
This commit is contained in:
2020-05-12 12:55:44 -04:00
parent 51d67a664a
commit 5fece2f29b
3 changed files with 2060 additions and 2378 deletions

4407
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,24 +12,25 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^9.0.7", "@angular/animations": "^9.1.6",
"@angular/common": "^9.0.7", "@angular/common": "^9.1.6",
"@angular/compiler": "^9.0.7", "@angular/compiler": "^9.1.6",
"@angular/core": "^9.0.7", "@angular/core": "^9.1.6",
"@angular/forms": "^9.0.7", "@angular/forms": "^9.1.6",
"@angular/platform-browser": "^9.0.7", "@angular/platform-browser": "^9.1.6",
"@angular/platform-browser-dynamic": "^9.0.7", "@angular/platform-browser-dynamic": "^9.1.6",
"@angular/router": "^9.0.7", "@angular/router": "^9.1.6",
"@ngrx/store": "^9.1.2",
"core-js": "^2.4.1", "core-js": "^2.4.1",
"rxjs": "^6.5.4", "rxjs": "^6.5.4",
"tslib": "^1.10.0", "tslib": "^1.10.0",
"zone.js": "~0.10.2" "zone.js": "~0.10.2"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.900.7", "@angular-devkit/build-angular": "~0.901.5",
"@angular/cli": "^9.0.7", "@angular/cli": "^9.1.5",
"@angular/compiler-cli": "^9.0.7", "@angular/compiler-cli": "^9.1.6",
"@angular/language-service": "^9.0.7", "@angular/language-service": "^9.1.6",
"@types/jasmine": "~2.5.53", "@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2", "@types/jasminewd2": "~2.0.2",
"@types/node": "^12.11.1", "@types/node": "^12.11.1",

View File

@@ -2,13 +2,15 @@ import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core'; import { NgModule } from '@angular/core';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { StoreModule } from '@ngrx/store';
@NgModule({ @NgModule({
declarations: [ declarations: [
AppComponent AppComponent
], ],
imports: [ imports: [
BrowserModule BrowserModule,
StoreModule.forRoot({}, {})
], ],
providers: [], providers: [],
bootstrap: [AppComponent] bootstrap: [AppComponent]