Comment Authors of Post On Front Page

Google will reveal all, if you know what your looking for.

You can get all comment authors by using the get_comments() function.

In fact the first example listed there will exactly what you want.

<?php 
$comments = get_comments('post_id=15');
foreach($comments as $comment) :
    echo($comment->comment_author);
endforeach;
?>