I'm new at Angular2 development. Looking at a few examples online, in the package.json file under the "dependencies", some examples have:
"@angular/common": "2.0.0-rc.1", "@angular/core": "2.0.0-rc.1", While some examples have:
"angular2": "2.0.0-beta.15", From what I have read, the @angular/.. is newer and used with the Release Candidates of Angular2.
Now some npm packages rely on "@angular/.." and some on "angular2". My question is can you have both in the package.json or will it cause issues? Also going forward with any new development I should ignore "angular2" and use "@angular/.." instead?
Thanks for the help!