How to inspect all the packages being built and their dependencies?

I’m trying to figure out what are ALL the packages that end up in my app. meteor list only shows the top level dependencies. But I know that if you run meteor remove underscore, it is still included in the build somewhere.

Any ideas?

in your project folder there is a folder called .meteor (hidden folder maybe) it has a file called "versions"
It does not show direct dependecies (like what depends on what) but its a general list.

You can also check http://atmospherejs.com for the package page - it lists both dependants & dependencies in the sidebar to the right.

sweet. theres a nice start.

You could always connect directly to MDG’s package API (which is what atmospherejs does).

yeah, I think thats what I’ll have to do…

I ended up using their API and syncing with all packages: