Can I begin my angular module without specific dependencies?
This is my angular.module.
angular.module("app", [
'ngSanitize', 'ngAnimate', 'ui.router', 'ngMaterial',
'ngRoute', 'ngCookies', 'NgSwitchery',
'ngCkeditor', 'angularFileUpload',
]);
I prefer not to use 'NgSwitchery', 'ngCkeditor', 'angularFileUpload' initially as they are required on the first loading.
Thanks in advance.