Create react app Error: Cannot find module './locale'

The reason this happens is because moment has released the new version from 2.24.0 to 2.25.0

Perform the following Steps to solve this issue :

Step 1: change the versions (In your case just add the "moment":"2.24.0" to your dependencies in your package.json since I don't see it present in your package.json)

"moment": "2.24.0",
"moment-timezone": "^0.5.28",

Step 2: If you are using yarn please add resolutions in your package.json file like this

"dependencies" {
"moment": "2.24.0",
"moment-timezone": "^0.5.28"
},
"resolutions": {
"moment": "2.24.0"
},

For more information about this issue go to https://github.com/moment/moment/issues/4505