forked from born2net/ng2-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "angular2-starter",
"author": "Dan Wahlin",
"version": "0.9.0",
"repository": "https://github.com/danwahlin/angular2-jumpstart",
"scripts": {
"postinstall": "npm run typings install",
"build": "tsc",
"build:w": "tsc --watch",
"bundle": "node bundle.js",
"bundle:prod": "node bundle.js --prod",
"lite": "lite-server",
"start": "concurrently \"npm run build:w\" \"npm run lite\" ",
"typings": "typings"
},
"license": "ISC",
"dependencies": {
"@angular/common": "2.0.0-rc.2",
"@angular/compiler": "2.0.0-rc.2",
"@angular/core": "2.0.0-rc.2",
"@angular/http": "2.0.0-rc.2",
"@angular/platform-browser": "2.0.0-rc.2",
"@angular/platform-browser-dynamic": "2.0.0-rc.2",
"@angular/router": "^3.0.0-alpha.3",
"es6-shim": "^0.35.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.30",
"typescript": "^1.9.0-dev.20160611-1.0",
"zone.js": "0.6.12"
},
"devDependencies": {
"concurrently": "^2.1.0",
"lite-server": "^2.2.0",
"typescript": "^1.9",
"typings": "^1.2.0",
"systemjs-builder": "^0.15.20",
"yargs": "^4.7.1"
}
}