feat(create-turbo): create kitchen-sink

This commit is contained in:
Turbobot 2025-06-19 02:40:01 +08:00 committed by afiqzudinhadi
commit 4625c93980
80 changed files with 11572 additions and 0 deletions

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "kitchen-sink",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.0"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": ">=18"
}
}