How to force npm to use the jquery 2.1.1
You can use the npm CLI to install the dependency directly without changing the dependencies yourself in package.json by typing:
npm install [email protected]
Add the specific version to your package.json
:
"dependencies": {
"jquery": "2.1.1"
}
Then, run the following command :
npm update