aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/package.json
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-05-13 14:18:37 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-05-13 14:23:11 +0200
commit230809efa1e7e81ce60cd65f8b398f01a27d525b (patch)
treeddbd0cee82bd2d35d01a1307a2905a467f51ca6b /client/package.json
parentbc503c2a62dcf9aed6b8d90b68f0f27a7755ac01 (diff)
downloadPeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.tar.gz
PeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.tar.zst
PeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.zip
Update to Angular RC 1
Diffstat (limited to 'client/package.json')
-rw-r--r--client/package.json26
1 files changed, 20 insertions, 6 deletions
diff --git a/client/package.json b/client/package.json
index db93ac681..5a103ceb7 100644
--- a/client/package.json
+++ b/client/package.json
@@ -17,28 +17,42 @@
17 "tsc:w": "tsc -w", 17 "tsc:w": "tsc -w",
18 "typings": "typings", 18 "typings": "typings",
19 "postinstall": "typings install", 19 "postinstall": "typings install",
20 "test": "tslint -c ./tslint.json angular/**/*.ts angular/**/**/*.ts angular/**/**/**/*.ts" 20 "test": "standard && tslint -c ./tslint.json angular/**/*.ts angular/**/**/*.ts angular/**/**/**/*.ts"
21 }, 21 },
22 "license": "ISC", 22 "license": "GPLv3",
23 "dependencies": { 23 "dependencies": {
24 "angular-pipes": "^1.5.0", 24 "angular-pipes": "^2.0.0",
25 "angular2": "2.0.0-beta.17", 25 "@angular/common": "2.0.0-rc.1",
26 "@angular/compiler": "2.0.0-rc.1",
27 "@angular/core": "2.0.0-rc.1",
28 "@angular/http": "2.0.0-rc.1",
29 "@angular/platform-browser-dynamic": "2.0.0-rc.1",
30 "@angular/platform-browser": "2.0.0-rc.1",
31 "@angular/router-deprecated": "2.0.0-rc.1",
26 "blueimp-file-upload": "^9.12.1", 32 "blueimp-file-upload": "^9.12.1",
27 "bootstrap-sass": "^3.3.6", 33 "bootstrap-sass": "^3.3.6",
28 "es6-promise": "^3.0.2", 34 "es6-promise": "^3.0.2",
29 "es6-shim": "^0.35.0", 35 "es6-shim": "^0.35.0",
30 "jquery": "^2.2.3", 36 "jquery": "^2.2.3",
31 "jquery.ui.widget": "^1.10.3", 37 "jquery.ui.widget": "^1.10.3",
32 "reflect-metadata": "0.1.2", 38 "reflect-metadata": "0.1.3",
33 "rxjs": "5.0.0-beta.6", 39 "rxjs": "5.0.0-beta.6",
34 "systemjs": "0.19.26", 40 "systemjs": "0.19.27",
35 "webtorrent": "^0.89.0", 41 "webtorrent": "^0.89.0",
36 "zone.js": "0.6.12" 42 "zone.js": "0.6.12"
37 }, 43 },
38 "devDependencies": { 44 "devDependencies": {
39 "codelyzer": "0.0.18", 45 "codelyzer": "0.0.18",
46 "standard": "^7.0.1",
47 "systemjs-builder": "^0.15.16",
40 "tslint": "^3.7.4", 48 "tslint": "^3.7.4",
41 "typescript": "^1.8.10", 49 "typescript": "^1.8.10",
42 "typings": "^0.8.1" 50 "typings": "^0.8.1"
51 },
52 "standard": {
53 "ignore": [
54 "angular/",
55 "bundles/"
56 ]
43 } 57 }
44} 58}