Package version resolutions

Sometimes different packages we’re using might have a dependency on the same 3rd party package but with different versions. To make things work we can add a resolutions entry to the package.json file and add the specific version we’d like to use:

"resolutions": {
	"babel-jest": "24.7.1"
}