21 lines
468 B
JSON
21 lines
468 B
JSON
{
|
|
"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.4"
|
|
},
|
|
"packageManager": "pnpm@8.15.6",
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|