mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
setup turborepo and web app with fumadocs
This commit is contained in:
67
package.json
67
package.json
@@ -1,46 +1,25 @@
|
||||
{
|
||||
"name": "create-better-t-stack",
|
||||
"version": "1.0.0",
|
||||
"description": "CLI tool to scaffold Better-T Stack projects",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"create-better-t-stack": "./dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"dev": "tsup --watch",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"check": "biome check --write .",
|
||||
"test": "vitest run",
|
||||
"prepublishOnly": "npm run build",
|
||||
"prepare": "husky"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"templates"
|
||||
],
|
||||
"dependencies": {
|
||||
"@inquirer/prompts": "^7.3.1",
|
||||
"chalk": "^5.3.0",
|
||||
"commander": "^13.1.0",
|
||||
"execa": "^8.0.1",
|
||||
"fs-extra": "^11.2.0",
|
||||
"gradient-string": "^3.0.0",
|
||||
"lint-staged": "^15.4.3",
|
||||
"ora": "^7.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "1.9.4",
|
||||
"@types/inquirer": "^9.0.7",
|
||||
"@types/node": "^20.10.5",
|
||||
"husky": "^9.1.7",
|
||||
"tsup": "^8.0.1",
|
||||
"typescript": "^5.3.3",
|
||||
"vitest": "^1.1.0"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": [
|
||||
"biome check --write ."
|
||||
]
|
||||
}
|
||||
"name": "better-t-stack",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "turbo build",
|
||||
"dev": "turbo dev",
|
||||
"lint": "turbo lint",
|
||||
"prepare": "husky"
|
||||
},
|
||||
"devDependencies": {
|
||||
"turbo": "^2.4.1",
|
||||
"typescript": "5.7.3",
|
||||
"@biomejs/biome": "1.9.4",
|
||||
"husky": "^9.1.7",
|
||||
"lint-staged": "^15.4.3"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*": ["biome check --write ."]
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"packageManager": "bun@1.2.2",
|
||||
"workspaces": ["apps/*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user