-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (45 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
{
"name": "playground-angular2",
"version": "0.111.0",
"scripts": {
"tsc": "tsc",
"tsc_watch": "tsc -w",
"npm_outdated" : "npm outdated",
"npm_install_new" : "rm -rf node_modules && npm install",
"npm_update" : "npm update -s",
"npm_update_itself" : "npm install -g npm",
"npm_list" : "npm list",
"postinstall": "typings install",
"startLiteServer": "lite-server",
"startMockBackend": "json-server --port 3001 --watch ./test/db.json",
"_start": "concurrently \"npm run startMockBackend\" \"npm run tsc_watch\" \"npm run startLiteServer\"",
"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",
"bootstrap": "^3.3.6",
"json-server": "^0.8.12",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.27",
"zone.js": "^0.6.12",
"angular2-in-memory-web-api": "0.0.7",
"ng2-bootstrap": "1.0.17"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.0.1",
"typescript": "^1.8.10",
"typings":"^0.8.1"
}
}