Skip to content

Commit

Permalink
fixed Requirements in angular and express project
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy committed Feb 22, 2018
1 parent 9a0ecbb commit 02370e3
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 25 deletions.
87 changes: 76 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"@angular/compiler": "^5.2.2",
"@angular/core": "^5.2.2",
"@angular/material": "^5.1.1",
"ajv": "^6.1.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
Expand Down
12 changes: 6 additions & 6 deletions project-angular-src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions project-angular-src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.5",
"@angular/cdk": "^5.2.1",
"@angular/animations": "5.2.2",
"@angular/cdk": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/core": "5.2.2",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/material": "^5.2.1",
"@angular/material": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
Expand Down Expand Up @@ -47,6 +47,6 @@
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "^2.6.2"
"typescript": "2.6.2"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<app-toolbar></app-toolbar>
<div class="container">
<form (ngSubmit)="onSubmit()">
<div>
Expand Down
2 changes: 1 addition & 1 deletion project-angular-src/src/app/toolbar/toolbar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<span>BU Project Tracker</span>
<button mat-button routerLink="/home">Home</button>
<button mat-button routerLink="/projectSearch">Project Search</button>
<button mat-button routerLink="/addProject">Create New Project</button>
<button mat-button routerLink="/viewProject">Manage Projects</button>
<span class="example-spacer"></span>
<button mat-button [matMenuTriggerFor]="menu">
<mat-icon >account_box</mat-icon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
</tr>
</tbody>
</table>
<!-- <app-add-project (addProject)="onAddProject($event)"></app-add-project> -->
<app-add-project (addProject)="onAddProject($event)"></app-add-project>

0 comments on commit 02370e3

Please sign in to comment.