Can't install ng2-translate in my ionic 2 project (using ionic-angular: 2.0.0-beta.11)

Hello everybody,
I try to install ng2-translate with (npm install -g ng2-translate) but i got error from integration with some dependencies versions.

/user/binaries/npm-global/lib
├── UNMET PEER DEPENDENCY @angular/core@^2.0.0-rc.5
├── UNMET PEER DEPENDENCY @angular/http@^2.0.0-rc.5
└── ng2-translate@2.4.1

npm WARN ng2-translate@2.4.1 requires a peer of @angular/core@^2.0.0-rc.5 but none was installed.
npm WARN ng2-translate@2.4.1 requires a peer of @angular/http@^2.0.0-rc.5 but none was installed.

I upgraded angular/core, @angular/http to 2.0.0-rc.5 but after that i got error integration with ionic-angular@2.0.0-beta.11, because needs rc.4 versions of them…

My dependencies :

“dependencies”: {
"@angular/common": “2.0.0-rc.4”,
"@angular/compiler": “2.0.0-rc.4”,
"@angular/core": “2.0.0-rc.4”,
"@angular/platform-browser": “2.0.0-rc.4”,
"@angular/platform-browser-dynamic": “2.0.0-rc.4”,
"@angular/http": “2.0.0-rc.4”,
"@angular/forms": “0.2.0”,
“es6-shim”: “^0.35.0”,
“ionic-angular”: “2.0.0-beta.11”,
“ionic-native”: “1.3.10”,
“ionicons”: “3.0.0”,
“reflect-metadata”: “^0.1.3”,
“rxjs”: “5.0.0-beta.6”,
“zone.js”: “^0.6.12”
},

You should use ng2-translate@2.2.2 , the later versions depend on angularjs2 rc5, which is not completely usable with ionic beta11. When Beta 12 is out, 2.3+ will work again, probably, as it will be built upon angularjs 2 rc5

2.2.2 version return this error…

├── UNMET PEER DEPENDENCY @angular/common@^2.0.0-rc.3
├── UNMET PEER DEPENDENCY @angular/compiler@^2.0.0-rc.3
├── UNMET PEER DEPENDENCY @angular/core@^2.0.0-rc.3
├── UNMET PEER DEPENDENCY @angular/http@^2.0.0-rc.3
└── ng2-translate@2.2.2

npm WARN ng2-translate@2.2.2 requires a peer of @angular/common@^2.0.0-rc.3 but none was installed.
npm WARN ng2-translate@2.2.2 requires a peer of @angular/compiler@^2.0.0-rc.3 but none was installed.
npm WARN ng2-translate@2.2.2 requires a peer of @angular/core@^2.0.0-rc.3 but none was installed.
npm WARN ng2-translate@2.2.2 requires a peer of @angular/http@^2.0.0-rc.3 but none was installed.

Have a look at following post, I faced the same “requires a peer of” problem. Maybe you could fix it the same way

Try with these dependancies in package.json:
"@angular/common": “2.0.0-rc.4”,
"@angular/compiler": “2.0.0-rc.4”,
"@angular/core": “2.0.0-rc.4”,
"@angular/http": “2.0.0-rc.4”,
“ng2-translate”: “2.2.2”,