I have an application that pulls in some dependencies.
I am releasing a new version of my application. Let's say 1.2.4
I also have some dependencies, where dependency1 is on version 10.3.0.
I would like to have an automated test that checks that with version 1.2.4 of my release, dependency1 has to be on exactly version 10.3.0
Is there a way of doing this? Could this be done with Jest? Or is there a simpler way of doing it? Are there any examples on how to do this?