If you have subdirectories or additional applications which have its own package.json file, you can add them via the workspaces setting to your main project.
1 2 3 4 5 6 | { "name" : "my-project" , "workspaces" : [ "./app/*" ] } |
When running npm install
it will now also install the dependencies of all projects in the app folder.