JSFiddle - React, Tailwind, and code Playground
HTML
<?php
$args = array(
'hide_empty' => false
);
$terms = get_terms( 'wpsc_product_category', $args );
if ( !empty( $terms ) && !is_wp_error( $terms ) ){
foreach ( $terms as $term ) { ?>
<li class="calendar-filter-menu-item" data-filter=".<?php echo $term->slug; ?>"><?php echo $term->count; ?></li>
<?php }
} ?>