Some checks failed
Deploy — Staging / Build & push — admin (push) Has been cancelled
Deploy — Staging / Build & push — storefront (push) Has been cancelled
Deploy — Staging / Deploy to staging VPS (push) Has been cancelled
Deploy — Staging / Lint, Typecheck & Test (push) Has been cancelled
turbo prune storefront --docker excludes admin, so tailwind-merge was not installed at root in Docker (it was only hoisted because of admin's dep). @heroui/styles/node_modules/tailwind-variants requires tailwind-merge >=3.0.0 and walks up to root to find it. Adding it as a root-level dep ensures npm ci always installs it regardless of which workspace is being built. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "ecommerce",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"packageManager": "npm@11.6.2",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "turbo dev",
|
|
"build": "turbo build",
|
|
"lint": "turbo lint",
|
|
"type-check": "turbo type-check",
|
|
"dev:storefront": "turbo dev --filter=storefront",
|
|
"dev:admin": "turbo dev --filter=admin",
|
|
"build:storefront": "turbo build --filter=storefront",
|
|
"build:admin": "turbo build --filter=admin",
|
|
"test": "vitest",
|
|
"test:once": "vitest run",
|
|
"test:coverage": "vitest run --coverage --coverage.reporter=text"
|
|
},
|
|
"dependencies": {
|
|
"@clerk/backend": "^2.32.1",
|
|
"@convex-dev/resend": "^0.2.3",
|
|
"@tailwindcss/postcss": "^4.2.0",
|
|
"convex": "^1.32.0",
|
|
"next": "16.1.6",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"stripe": "^20.4.0",
|
|
"svix": "^1.86.0",
|
|
"tailwind-merge": "^3.4.0",
|
|
"tailwindcss": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@edge-runtime/vm": "^5.0.0",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3",
|
|
"autoprefixer": "^10.4.0",
|
|
"convex-test": "^0.0.41",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-next": "^15.3.2",
|
|
"happy-dom": "^20.7.0",
|
|
"postcss": "^8.4.0",
|
|
"turbo": "^2.0.0",
|
|
"typescript": "^5.4.0",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|