Created
July 13, 2021 03:09
Using multiple versions of the same package in a project: package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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