I am trying to construct a web application using a REST API and an Angular Frontend. Apart from importing all the Angular JS framework files and extensions I also have to add script tags for every single javascript file I wrote on my own (which will be a lot for all the controllers). I have heard about different solutions trying to solve this issue but found nothing so far that is up to date / would work without refactoring. I do not use Node.js but rather a Python / Werkzeug based server which is delivering the content and npm / bower to manage javascript packages.
Therefore how can I import lots of javascript files automatically / is there any tool that can assist me in the process? Assuming this would be a larger application I wouldn't want to load all x javascript files on a single request.
Edit: I am specifically searching for a way how to handle those imports with Angular / without adding a new dependency. RequireJS e.g. needs something like JQuery. Maybe I am missing the point but right now I don't know any trivial solution under the given requirements.