* feat: setup subscriptions * feat: prompt user to create subscription if inactive * feat: update subscription when increasing/decreasing workspace members * feat: rework upgrade * chore: remove pricing notice * chore: add translations * chore: update proration comment
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"name": "kan",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=20.18.1",
|
|
"pnpm": "^9.14.2"
|
|
},
|
|
"packageManager": "pnpm@9.14.2",
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"clean": "git clean -xdf node_modules",
|
|
"clean:workspaces": "turbo run clean",
|
|
"db:migrate": "cd packages/db && pnpm migrate",
|
|
"db:push": "turbo -F @kan/db push",
|
|
"db:studio": "turbo -F @kan/db studio",
|
|
"dev": "turbo watch dev --continue",
|
|
"dev:next": "turbo watch dev -F @kan/web...",
|
|
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
|
|
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
|
|
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
|
|
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
|
|
"lint:ws": "pnpm dlx sherif@latest",
|
|
"postinstall": "pnpm lint:ws",
|
|
"typecheck": "turbo run typecheck",
|
|
"ui-add": "turbo run ui-add"
|
|
},
|
|
"devDependencies": {
|
|
"@kan/prettier-config": "workspace:*",
|
|
"@turbo/gen": "^2.3.1",
|
|
"prettier": "catalog:",
|
|
"turbo": "^2.3.1",
|
|
"typescript": "catalog:"
|
|
},
|
|
"prettier": "@kan/prettier-config",
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@types/minimatch": "npm:minimatch@*",
|
|
"@types/glob": "npm:@types/glob@^8.1.0"
|
|
}
|
|
}
|
|
}
|