
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@mikelgo/nx-dependency-check
Advanced tools
Nx Plugin for managing dependency updates and not let your project become outdated
A Nx plugin to maintain a healthy project by checking automatically outdated packages.
npm install @mikelgo/nx-dependency-check
In your project.json you only need to define a new target:
"targets": {
"check-deps": {
"executor": "@mikelgo/nx-dependency-check:check-deps"
}
}
That's it! The plugin itself comes with reasonable defaults:
package.json filelatest tag to check for updatesThe check-deps-executor provides several configuration options. Here's an example
"targets": {
"check-deps": {
"executor": "@mikelgo/nx-dependency-check:check-deps",
"options": {
"dependenciesToCheck": ["@angular/core", "@angular/common", "rxjs", "xng-breadcrumb"],
"versionOffset": {
"major": 1
},
"versionOffsetOverrides": [{"packageName": "xng-breadcrumb", "major": 1} ],
"failOnVersionMismatch": false,
"inputs": [
"package.json"
],
"cache": true
}
}
}
Let's go through the options:
dependenciesToCheck: a array of package names which should be checked. Default is [*] which means that all packages are checked. If you only provide certain package names like in this example this means that only theses packages are checked.versionOffset: a object which defines the version offset. Default is {major: 1} which means that a package is marked as outdated if it is more than one major version behind latest.versionOffsetOverrides: A configuration where you can overrule the general versionOffset for certain packages. This is especially helpful if you have high-frequent packages or simply some packages which you can not update right now.failOnVersionMismatch: A boolean which defines if the build should fail if outdated packages are found. Default is true. Setting this option to false might be helpful if you do not want to make passing the deps-check as a hard criteria to pass your build. You wil anyway get a nice report.inputs: A list of files which are used to determine the packages to check. Default is ["package.json"] which means that only the root package.json is used. You can also provide a list of files like ["package.json", "projects/**/package.json"] to check all package.json files in your projects.cache: whether to use the nx cache or not. Default is false.The plugin needs @nx/devkit version 16.1.0 or higher.
FAQs
Nx Plugin for managing dependency updates and not let your project become outdated
We found that @mikelgo/nx-dependency-check demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.