The following modules are missing or build with a different engine version

Your build file has a different name than your project

From the message the compiler expects to find a project build file class called MoHttp that derives from ModuleRules

So something like this:

public class MoHttp: ModuleRules
{
	public MoHttp(ReadOnlyTargetRules Target) : base(Target)
	{
        }
}

Did you copy a build file from another project and forget to rename it’s internals?
Because from the earlier errors it would seem like your project name is “Anomalies”

Do a project wide search of MoHttp and see where it’s mentioned in your project files

obraz