Files
the-pet-loft/apps/storefront/package.json
ianshaloom f6156c78d1
Some checks failed
Deploy — Staging / Detect changed apps (push) Successful in 16s
Deploy — Staging / Lint, Typecheck & Test (push) Successful in 1m29s
Deploy — Staging / Build & push — ${{ matrix.app }} (push) Failing after 49s
Deploy — Staging / Deploy to staging VPS (push) Has been skipped
feat(storefront): render product description as markdown
- Add react-markdown dependency to storefront
- Use ReactMarkdown in ProductDetailDescriptionSection for formatted descriptions

Made-with: Cursor
2026-03-08 16:27:48 +03:00

26 lines
613 B
JSON

{
"name": "storefront",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@clerk/nextjs": "^6.38.2",
"@heroui/react": "^3.0.0-beta.7",
"@heroui/styles": "^3.0.0-beta.7",
"@repo/convex": "*",
"@repo/types": "*",
"@repo/utils": "*",
"@stripe/react-stripe-js": "^5.6.0",
"@stripe/stripe-js": "^8.8.0",
"framer-motion": "^11.0.0",
"lucide-react": "^0.400.0",
"react-markdown": "^10.1.0"
}
}