2016-09-01 8 views
0

私はcloud/node2/angular2ソリューションをインストールしようとしています。ここに私のpackage.jsonが、これが書かれている方法があるにもかかわらずrxjsが正しいバージョンではないのはなぜですか?

{ 
    "name": "example", 
    "version": "0.0.0", 
    "private": true, 
    "scripts": { 
    "start": "node ./bin/www", 
    "postinstall": "typings install", 
    "typings": "typings", 
    "vendor": "gulp vendor", 
    "gulp": "gulp clean && gulp", 
    "build:production": "gulp clean && gulp build && node systemjs.builder.js" 
    }, 
    "dependencies": { 
    "@angular/common": "2.0.0-rc.5", 
    "@angular/compiler": "2.0.0-rc.5", 
    "@angular/core": "2.0.0-rc.5", 
    "@angular/forms": "0.3.0", 
    "@angular/http": "2.0.0-rc.5", 
    "@angular/platform-browser": "2.0.0-rc.5", 
    "@angular/platform-browser-dynamic": "2.0.0-rc.5", 
    "@angular/router": "3.0.0-rc.1", 
    "@angular/upgrade": "2.0.0-rc.5", 
    "body-parser": "~1.15.2", 
    "cookie-parser": "~1.4.3", 
    "core-js": "^2.4.1", 
    "debug": "~2.2.0", 
    "express": "~4.14.0", 
    "hbs": "~3.1.0", 
    "mongoose": "^4.5.8", 
    "mongoose-unique-validator": "^1.0.2", 
    "morgan": "~1.6.1", 
    "reflect-metadata": "^0.1.3", 
    "rxjs": "5.0.0-beta.11", 
    "serve-favicon": "~2.3.0", 
    "systemjs": "0.19.36", 
    "zone.js": "^0.6.12" 
    }, 
    "devDependencies": { 
    "del": "^2.2.1", 
    "gulp": "^3.9.0", 
    "gulp-sourcemaps": "^1.6.0", 
    "gulp-typescript": "^2.10.0", 
    "systemjs-builder": "^0.15.26", 
    "typings": "^1.3.2" 
    } 
} 

ですが、私はnpm install中にこのエラーを取得しておいてください。

npm WARN @angular/[email protected] requires a peer of [email protected] but none was installed. 
npm WARN @angular/[email protected] requires a peer of [email protected] but none was installed. 
npm WARN @angular/[email protected] requires a peer of r[email protected] but none was installed. 

私はこのエラーを得続けるソリューションを実行しようとすると:

UNMET PEER DEPENDENCY [email protected] 

package.jsonをbeta.6に変更しようとしましたが、それでも失敗します。

誰もが知恵を持っていますか?おかげさまで プロジェクトフォルダ内node_modulesディレクトリを削除します"rxjs": "5.0.0-beta.6",

  • を使用する

  • 答えて

    2
    1. 更新package.json
    2. それを修正する必要があります実行npm install

    。私はあなたのpackage.jsonをrxjs 5 beta6と使用していますが、インストールは問題なく成功しました。

    関連する問題