const shop = JSON.parse('/shop.json')
document.write(JSON.stringify(shop.data.featured.name))
document.write()
— это зло.<div id="shopdata"></div>
fetch('/shop.json')
.then(response => response.json())
.then(data => document.getElementById("shopdata")
.innerHTML = JSON.stringify(data.data.featured.name))