Files
myeasycms-v2/package.json
Giancarlo Buomprisco 6268d1bab0 Updated dependencies, Added Hosted mode for Stripe checkout
* chore: bump version to 3.1.0 and update dependencies in package.json, pnpm-lock.yaml, and pnpm-workspace.yaml; enhance billing services with support for hosted checkout page in Stripe integration

* Enhance error handling in billing services to log error messages instead of objects; update documentation for Stripe integration to clarify publishable key requirements based on UI mode.
2026-03-31 12:44:30 +08:00

53 lines
1.7 KiB
JSON

{
"name": "next-supabase-saas-kit-turbo",
"version": "3.1.0",
"private": true,
"author": {
"name": "MakerKit",
"url": "https://makerkit.dev"
},
"sideEffects": false,
"scripts": {
"turbo": "turbo",
"preinstall": "pnpm run --filter scripts requirements",
"postinstall": "manypkg fix",
"build": "turbo build --cache-dir=.turbo",
"clean": "git clean -xdf node_modules dist .next",
"clean:workspaces": "turbo clean",
"dev": "cross-env FORCE_COLOR=1 turbo dev --parallel",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"healthcheck": "oxlint --fix && oxfmt && pnpm run typecheck && manypkg fix",
"typecheck": "turbo typecheck --affected --cache-dir=.turbo",
"test": "turbo test --cache-dir=.turbo",
"update": "pnpm update -r",
"syncpack:list": "pnpm dlx syncpack list-mismatches",
"syncpack:fix": "pnpm dlx syncpack fix-mismatches",
"supabase:web:start": "pnpm --filter web supabase:start",
"supabase:web:stop": "pnpm --filter web supabase:stop",
"supabase:web:typegen": "pnpm --filter web supabase:typegen",
"supabase:web:reset": "pnpm --filter web supabase:reset",
"supabase:web:test": "pnpm --filter web supabase:test",
"stripe:listen": "pnpm --filter '@kit/stripe' start",
"env:generate": "turbo gen env",
"env:validate": "turbo gen validate-env"
},
"devDependencies": {
"@manypkg/cli": "catalog:",
"@turbo/gen": "catalog:",
"@types/node": "catalog:",
"cross-env": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"server-only": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"engines": {
"node": ">=20.10.0"
},
"packageManager": "pnpm@10.33.0"
}