mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
- Move Prisma files to standard /prisma directory - Remove Turso adapter dependencies for Prisma - Fix auth configuration in templates - Update router devtools package name - Simplify post-installation instructions - Improve npm scripts with cleaner commands
34 lines
877 B
JSON
34 lines
877 B
JSON
{
|
|
"name": "better-t-stack",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev",
|
|
"dev:cli": "turbo run dev --filter=create-better-t-stack",
|
|
"cli": "cd apps/cli && node dist/index.js",
|
|
"dev:web": "turbo run dev --filter=web",
|
|
"build:web": "turbo run build --filter=web",
|
|
"build:web:cloudflare": "bun install && bun run build:web",
|
|
"build:cli": "turbo run build --filter=create-better-t-stack",
|
|
"check": "turbo check",
|
|
"prepare": "husky",
|
|
"publish-packages": "turbo run build && changeset publish"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@changesets/cli": "^2.28.1",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.0",
|
|
"turbo": "^2.4.4",
|
|
"typescript": "5.7.3"
|
|
},
|
|
"lint-staged": {
|
|
"*": ["biome check --write ."]
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"packageManager": "bun@1.2.2",
|
|
"workspaces": ["apps/*"]
|
|
}
|