Yes of course, the more packages you require the larger the file size. When you cdn you don't actually store the code locally, but the end-user will still make a request to the cdn to get the required script. It's actually worse in some cases, for example if you have many scripts and css files, then all those requests will slow down the page load. You can use some tricks to control the file sizes, such as some clever plugins which will remove all unused css rules from your app.css, reduce JS sizes etc.
Basically: just use what you need and nothing more. If you don't need lodash and vue and jquery just remove them from the bootstrap and app.js files.