What is package-lock.json? And why should you care? — What is package.json? package.json is a versioning file that primarily contains the list of dependencies (libraries) your node.js project needs to run. It also includes other meta information like scripts, author & license information, description, project properties etc. An Inherent Problem In the above package.json, …