Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active May 17, 2025 23:33
Show Gist options
  • Save mcsee/d1aa123981988448e9baa9434f6f32ed to your computer and use it in GitHub Desktop.
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
// 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