Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Created July 13, 2021 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willmendesneto/0c6790fee63e328d220268784b7dcc8e to your computer and use it in GitHub Desktop.
Save willmendesneto/0c6790fee63e328d220268784b7dcc8e to your computer and use it in GitHub Desktop.
Using multiple versions of the same package in a project: package.json
{
"name": "multiple-versions-of-package-in-project",
"version": "1.0.0",
"description": "Using multiple versions of the same package in a project",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"keywords": [],
"author": "Will Mendes <willmendesneto@gmail.com>",
"license": "ISC",
"dependencies": {
"feature-toggle-service": "npm:feature-toggle-service@^4.0.0",
"feature-toggle-service-next": "npm:feature-toggle-service@^6.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment