Search code examples
laravelnpmdependencies

Laravel: How to Uninstall a dependency/plugin?


In the package.json I have these dependencies installed:

"dependencies": {
        "moment": "^2.24.0",
        "progressbar": "^1.3.0",
        "vue-progressbar": "^0.7.5",
        "vue-router": "^3.1.5"
    }

I need to remove "progressbar": "^1.3.0".

How do I do this, please. Thank you.


Solution

  • Those are your javascript dependencies, so with npm installed, you can simply use npm uninstall progressbar --save but refer to the Documentation or the accepted answer in this Question to find the optimal command for you