Files
the-pet-loft/apps/storefront/package.json
ianshaloom 2f5537cf7e
Some checks failed
CI / Lint, Typecheck & Test (push) Failing after 1m16s
feat(lint): add ESLint configuration for admin and storefront applications
- Introduced eslint.config.mjs files for both admin and storefront to extend Next.js linting rules.
- Updated package.json files to replace the default Next.js lint command with a direct ESLint command for improved linting control.
2026-03-08 00:37:15 +03:00

24 lines
548 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"
}
}