Laravel.io
const spApp = angular
  .module('spApp', [
    'ui.bootstrap',
    'ui.sortable',
    'toastr',
    'summernote',
    'angucomplete-alt',
    'nvd3',
    'ui.sortable.multiselection',
    'ngMessages',
    'ngPostMessage',
    'infinite-scroll',
    'angularjs-dropdown-multiselect'
  ])
  .constant('lodash', _.noConflict())
  .config(['$httpProvider', function ($httpProvider) {
    $httpProvider.defaults.headers
      .common['X-Requested-With'] = 'XMLHttpRequest';
  }]);

module.exports = {
  spApp: spApp
};

Please note that all pasted data is publicly available.