Some checks failed
Sync dev → Gitea / Mirror dev to Gitea (push) Has been cancelled
Commits merged: - feat(FN-206): add FeatureMatrix tests and export SubscriptionPage for testing - feat(FN-206): add FeatureMatrix component, ALL_FEATURES constant, and i18n keys Files changed: apps/web/src/messages/en.json | 1 + apps/web/src/messages/tr.json | 1 + .../routes/dashboard/subscription/index.test.tsx | 177 +++++++++++++++++++++ .../src/routes/dashboard/subscription/index.tsx | 73 +++++++++ package.json | 1 + 5 files changed, 253 insertions(+) Fusion-Task-Id: FN-206
32 lines
643 B
JSON
32 lines
643 B
JSON
{
|
|
"name": "sase-v2",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.29.3",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"typecheck": "turbo run typecheck",
|
|
"test": "turbo run test",
|
|
"clean": "turbo run clean"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"turbo": "^2"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"@biomejs/biome",
|
|
"@nestjs/core",
|
|
"@sentry-internal/node-cpu-profiler",
|
|
"esbuild",
|
|
"msgpackr-extract",
|
|
"sharp"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.50.0"
|
|
}
|
|
}
|