Last active
May 15, 2016 18:02
-
-
Save sidthesloth92/30bbf8ff2f6357f6e057c92b4cfee3fc to your computer and use it in GitHub Desktop.
Angular 2 – Hello World App – Typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "angular2-helloworld", | |
"version": "1.0.0", | |
"scripts": { | |
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ", | |
"lite": "lite-server", | |
"postinstall": "typings install", | |
"tsc": "tsc", | |
"tsc:w": "tsc -w", | |
"typings": "typings" | |
}, | |
"license": "ISC", | |
"dependencies": { | |
"@angular/common": "2.0.0-rc.1", | |
"@angular/compiler": "2.0.0-rc.1", | |
"@angular/core": "2.0.0-rc.1", | |
"@angular/http": "2.0.0-rc.1", | |
"@angular/platform-browser": "2.0.0-rc.1", | |
"@angular/platform-browser-dynamic": "2.0.0-rc.1", | |
"@angular/router": "2.0.0-rc.1", | |
"@angular/router-deprecated": "2.0.0-rc.1", | |
"@angular/upgrade": "2.0.0-rc.1", | |
"systemjs": "0.19.27", | |
"es6-shim": "^0.35.0", | |
"reflect-metadata": "^0.1.3", | |
"rxjs": "5.0.0-beta.6", | |
"zone.js": "^0.6.12", | |
"angular2-in-memory-web-api": "0.0.7" | |
}, | |
"devDependencies": { | |
"concurrently": "^2.0.0", | |
"lite-server": "^2.2.0", | |
"typescript": "^1.8.10", | |
"typings":"^0.8.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment