Skip to content

Commit

Permalink
Angular beta.9 with fixed dependencies for heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
vladotesanovic committed Mar 12, 2016
1 parent 0c728da commit c87c407
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/components/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import {Component} from 'angular2/core';
styleUrls: ['components/app.component.css']
})
export class AppComponent {
name: string = "Angular 2";
name: string = "Angular 2 on Express";
}
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "tsc -w",
"start": "concurrently \"tsc -w\" \"node ./bin/www\" ",
"postinstall": "typings install && tsc"
},
"dependencies": {
"angular2": "^2.0.0-beta.7",
"angular2": "2.0.0-beta.9",
"systemjs": "0.19.24",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.13",
"express": "~4.13.1",
"morgan": "~1.6.1",
"reflect-metadata": "0.1.2",
"rxjs": "^5.0.0-beta.2",
"serve-favicon": "~2.3.0",
"systemjs": "^0.19.22",
"zone.js": "^0.5.15"
},
"devDependencies": {
"typings": "^0.6.8",
"typescript": "^1.8.0"
},
"devDependencies": {
"concurrently": "^2.0.0"
}
}
3 changes: 2 additions & 1 deletion typings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"ambientDependencies": {
"es6-shim": "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#6697d6f7dadbf5773cb40ecda35a76027e0783b2"
"es6-shim": "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#4de74cb527395c13ba20b438c3a7a419ad931f1c",
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#d594ef506d1efe2fea15f8f39099d19b39436b71"
}
}

0 comments on commit c87c407

Please sign in to comment.