The simplest solution is:
npm uninstall packageName --save-dev npm uninstall packageName --save-dev See upper level packages names in the your project:
npm list --depth=0 npm list --depth=0 OutputThe output will be like:
[email protected] /home/jackkobec/projects/myAppName ├── packageName@packageVersion ├── [email protected] [email protected] /home/jackkobec/projects/myAppName ├── packageName@packageVersion ├── [email protected] Copy package name and execute npm uninstall command. Example for express package:
npm uninstall express --save-dev