Package dependency tree

Is there a way to determine the package dependency tree? I am trying to convert my angular app to not use angular:angular as per the new todo example and instead use the angular from npm. However, I keep on still having it present and getting “angular is being loaded twice”

Right now, the closest thing is to use Atmosphere and check the dependants of your packages, though it only shows up to 10 so you may want to check the package.js file on the github repo for more if 10 are shown

Thanks it seems it was what I was afraid of angular-server depends on angular and brings that dependency up to the UI side so angular gets loaded twice. For the time being, I had removed the angular dependency from npm and just left it global for now.