### Angular with Firebase Dependencies:
#### For Initializing Firebase into project :
```
npm i firebase --save
```
you might need to use cmd instead of gitbash while installing firebase as it does need python to run
#### AngularFire for ingerating firebase into Angular with the power of RXJS, Firebase, Storing data offline
```
npm install firebase @angular/fire --save
```
https://www.npmjs.com/package/@angular/fire
#### Optional Lib for bootstrap
```
npm install bootstrap
```
##### import bootstrap into style.css
```
@import "~bootstrap/dist/css/bootstrap.css";
```
### Angular-Bootstrap lib for using dom support for bootstrap in angular
```
npm install --save @ng-bootstrap/ng-bootstrap
```