프로젝트 구조를 보면 어느순간 package-lock.json 과 yarn.lock 이 동시에 존재하는 경우 => yarn과 npm을 둘 다 사용하고 있다.. 습관의 무서움
package-lock.json
yarn.lock
rm -rf node_modules rm -rf yarn.lock npm install
rm -rf node_modules rm -rf package-lock.json yarn