JSFiddle - React, Tailwind, and code Playground

HTML

<script>
    function MyController($scope){
        $scope.fields = {   [{"Total":8553678,"LabourTotal":8553678,"MaterialTotal":4903319,"AdlTotal":138698,"VmohTotal":997506,"MsdTotal":1851676}]
        }
    };
</script>
<div ng-app ng-controller="MyController">
    <ul>
        <li ng-repeat="field in fields">
            <p>
            {{field}}
            </p>
        </li>
    </ul>
    <pre>{{fields}}</pre>
</div>