기존에 설치되어있던 @fullcalendar, @testing-library, @toast-ui 등과 의존성(dependency) 모듈 버전 충돌로 인해 설치되지 않는 오류 발생
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @toast-ui/react-editor@3.2.3
npm ERR! Found: react@18.2.0
npm ERR! node_modules/react
npm ERR! peer react@"^16.7.0 || ^17 || ^18" from @fullcalendar/react@6.1.7
...
최신 버전의 npm에서 peer dependency가 충돌
--legacy-peer-deps
를 install 시 추가하여 해결
npm install dayjs --legacy-peer-deps