I am working on an AngularJS application and I tried to add Angular Animate.
Angular Route did not cause any problems, but it seems that Angular Animation is not compatible with something in my application.
I load libs in the following order:
<script type="text/javascript" src="../node_modules/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="../node_modules/angular/angular.min.js"></script> <script type="text/javascript" src="../node_modules/angular-animate/angular-animate.min.js"></script> <script type="text/javascript" src="../node_modules/angular-route/angular-route.min.js"></script>
And use them in my app.js :
var app = angular.module('tictactoe', ['ngRoute', 'ngAnimate']);
I get the following error. JQuery and Angular (Vanilla + Route + Animate) were installed with npm

Dependency Options:

Zooly source share