mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
a5bfb13c43
* wip * adapt nav * store management * ssr cart * clean up * fix stableId issue * allow image sorting * toast on ProceedToCheckoutButton * move actions, extract components * Add PPR to Cart (#85) * toast on Shop now * allow delay * loading spinner * wip * fix animations * show cart count * Extend shirt-shop demo with dynamic flag usage (#86) * better metadata * wip * move cart to api * wip * respect free shipping * add example banner * init shadcn * reorg * remove relative paths from components * do not link footer * wip * remove shadcn setup * api-server » shirt-shop-api * /api/:cartId » /api/cart/:cartId * add delayFlag desc * fix cart count * remove quantity * fine tune animation * shrink * list envs, fix Link * change flag names * set cart-id from middleware * append headers * allow cloning * add BACKEND_URL fallback
29 lines
627 B
JSON
29 lines
627 B
JSON
{
|
|
"name": "shirt-shop-api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev --turbopack --port 3030",
|
|
"lint": "next lint",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@upstash/redis": "1.34.4",
|
|
"next": "15.2.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.2.0",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|