-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Full-Stack Vue.js 2 and Laravel 5
By :

Now that we're familiar with the default Laravel frontend app code and configuration, we're ready to migrate the Vuebnb prototype into the main project. This migration will allow us to have all our source code in one place, plus we can utilize this more sophisticated development environment for building the remainder of Vuebnb.
The migration will involve:
Figure 5.6. Vuebnb prototype migration
Let's begin by removing the Node dependencies we no longer need. We'll keep axis
as it'll be used in a later chapter, and cross-env
because it ensures our NPM scripts can be run in a variety of environments. We'll get rid of the rest:
$ npm uninstall bootstrap-sass jquery lodash --save-dev
This command will leave your dev dependencies looking like this.
package.json
:
"devDependencies...