d36028d67b
Replace Turbo task orchestration with Bun workspace scripts and remove the Prettier configuration. Add Oxlint and Oxfmt project configuration, including Tailwind class sorting, generated-file exclusions, and unified check/fix commands. Apply the new formatter and resolve Hook dependency errors surfaced by Oxlint.
29 lines
788 B
JSON
29 lines
788 B
JSON
{
|
|
"name": "simple-react-app-kit",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "bun run --filter web build",
|
|
"check": "bun run format:check && bun run lint && bun run typecheck",
|
|
"dev": "bun run --filter web dev",
|
|
"format": "oxfmt apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json",
|
|
"format:check": "oxfmt --check apps packages package.json tsconfig.json .oxlintrc.json .oxfmtrc.json",
|
|
"lint": "oxlint .",
|
|
"lint:fix": "oxlint --fix .",
|
|
"typecheck": "bun run --workspaces typecheck"
|
|
},
|
|
"devDependencies": {
|
|
"oxfmt": "^0.61.0",
|
|
"oxlint": "^1.76.0",
|
|
"typescript": "~6"
|
|
},
|
|
"packageManager": "bun@1.3.5",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|