I had the same issue – If you head into the source files;
the-events-calendar\src\views\modules
You should see a meta.php file, which is the basis of the meta list. You can copy parts from this into your single-event.php file. Remember to copy the meta file over to your theme directory before you edit it to remove the tags you’ve copied so they don’t display twice 🙂
I needed to move the map, so I copied and pasted:
tribe_get_template_part( 'modules/meta/map' );
and then put it in the relevant place with encompassing php tags.
I hope this helps.