mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 05:02:07 +00:00
24 lines
724 B
JSON
24 lines
724 B
JSON
{
|
|
"name": "betternas",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"guardrails": "node ./scripts/check-boundaries.mjs",
|
|
"lint": "turbo run lint",
|
|
"format": "prettier --ignore-unknown --write . && turbo run format",
|
|
"format:check": "prettier --ignore-unknown --check . && turbo run format:check",
|
|
"check-types": "turbo run check-types",
|
|
"test": "turbo run test",
|
|
"verify": "pnpm run guardrails && pnpm run format:check && turbo run lint check-types test build"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.7.4",
|
|
"turbo": "^2.9.3",
|
|
"typescript": "5.9.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "pnpm@10.33.0"
|
|
}
|