Migrate Ember app from bower to npm

Viewed 1465

As I understand Ember Team recommended to migrate applications from bower to npm, but I wasn't able to find clear migration plan for that. Does someone have successful migration experience? Could you please share your experience or give some useful links with detailed instructions. Thanks.

this is my current bower.json file:

 {
  "name": "...",
  "dependencies": {
    "jquery": "1.11.3",
    "ember": "^2.14.0",
    "bootstrap-sass-official": "3.3.5",
    "inputmask": "~3.3.6",
    "bootstrap-star-rating": "~3.5.2",
    "font-awesome": "~4.5.0",
    "pubnub": "3.15.2",
    "bootstrap-switch": "^3.3.2",
    "soundmanager2": "*",
    "lodash": "^2.4.0",
    "mixpanel": "~2.7.1",
    "slick-carousel": "1.5.8",
    "seiyria-bootstrap-slider": "~6.0.6"
  },
  "resolutions": {
    "jquery": "1.11.3",
    "ember": "2.14.0"
  }
}
1 Answers
Related