package-lock.json 파일은 무엇인가?
package-lock.json 파일이 무엇인가? node.js 프로젝트를 진행하면서 package-lock.json 파일이 자꾸 생겨 귀찮게 느껴왔었습니다. 제거해도 다시 생성되고 굳이 commit에 포함시키지 않았었습니다. 계속 무시만 할 수 없어서 package-lock.json 파일에 대해서 알아보았습니다. 프로젝트에 설치된 노드 모듈들의 의존성 트리를 기록하고 있습니다. package-lock.json { "name": "my-nodejs", "version": "0.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { "express": { "version": "4.16.4", "resolved": "https://registry.n..