Meteor: How to list the installed packages

I'm starting with meteor, and I'd like to know how to list the installed packages.

meteor list would only list the available packages.

Edit: Since meteor 0.9.0.1 meteor list lists the available packages.

Update: as of meteor 1.0, the command is now

meteor list

I think the command you're looking for is

meteor list --using

I think it's just meteor list now (as of 0.9.0.1).

meteor list

does the trick for meteor 1.0

You can also use as of version 0.9.0.1 to search package: meteor search nameofpackage

You can check by typing meteor list on the command line on your project directory. Or, Browse into .meteor folder on your project directory and view the packages file with your favorite text editor.