1

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.

Kaustubh Khare
  • 3,280
  • 2
  • 32
  • 48
No One
  • 553
  • 2
  • 9
  • 24

1 Answers1

1

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

Helioarch
  • 1,158
  • 5
  • 18