- admin proxy: 25s timeout, body guards, structured failure logs - cart: addItem enforces stock cap (409 INSUFFICIENT_STOCK), UI clamps qty - tpv selfpay: hide sidebar/discounts/save-pending, rename button, receipt-settings 400 fix - pos admin: quick products slot count aligned to 8 - returns: human-readable history message + metadata jsonb (migrations 064-065) + admin fallback formatter - storefront: product card white background - product page: remove duplicate stock label under add-to-cart button
34 lines
763 B
JSON
34 lines
763 B
JSON
{
|
|
"name": "mercadodevida-storefront",
|
|
"version": "0.2.8",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "mercadodevida customer storefront shell",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "prettier --check .",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"next": "^16.0.5",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"server-only": "^0.0.1",
|
|
"sharp": "^0.35.3",
|
|
"tailwindcss": "^4.1.17"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "^19.2.6",
|
|
"@types/react-dom": "^19.2.3",
|
|
"prettier": "^3.7.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|