I have a scenario where I want to download a dependency (dependency is a react app) through npm install without downloading any of its transitive dependencies.
"dependencies": { "my-react-app": "latest" }
and under node_modules I am expecting only my-react-app. Is this possible?