Have you ever wanted to know what is installed on your drive when you use the ng new my-project command?
To check what’s going on in the dependency tree of your project you can use the
npm list –depth=0
command. You can also use the npm list itself, however, the --depth=0 shortens the list to the top-level dependencies so it is easier to track them.

