Last active
May 17, 2025 23:33
-
-
Save mcsee/d1aa123981988448e9baa9434f6f32ed to your computer and use it in GitHub Desktop.
This gist belongs to Clean Code Cookbook http://cleancodecookbook.com By Maximiliano Contieri http://maximilianocontieri.com
This file contains hidden or 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
// package.json | |
{ | |
"name": "my-app", | |
"dependencies": { | |
"react": "18.2.0", | |
"lodash": "4.17.21", // Correct spelling with exact version | |
"@company-scope/internal-logger": "2.1.0" // Scoped package | |
}, | |
"resolutions": { | |
"lodash": "4.17.21" | |
// Force specific version for nested dependencies | |
}, | |
"packageManager": "[email protected]" // Lock package manager version | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment