Thanks for pointing that out. What happens currently is that there are some css styles that get exported with the project that will make any list not display correctly. We are working on a fix for this for our next release.
In the meantime, you can scope out the list and apply some css styles to make it regular again. I gave the scene an id ("my-list") and the used the Head HTML property in the project setting to re-apply the basic css for a list e.g.
Code:
<style type="text/css">
#my-list li{
display: list-item;
position:static;
}
</style>
I also added surrounding ul tags to your list since they were missing.
Attaching the project with the fixes included.