Prefer exact versions in npm
Use the save-exact NPM option.
So, make a .npmrc file either in the root of your project or in your home directory.
Add to it:
npmrc
save-exact=trueFrom here, any newly-installed dependencies will install without a range.
Any already installed dependencies will need to be manually updated.
