mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
a1535319e6
Add react-doctor for React lint/a11y/perf/architecture diagnostics: - Add react-doctor devDependency and "doctor" npm script - Add .claude/skills/react-doctor skill for local triage workflow - Add GitHub Actions workflow to scan PRs and track health score
44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "plane",
|
|
"version": "1.3.1",
|
|
"private": true,
|
|
"description": "Open-source project management that unlocks customer value",
|
|
"license": "AGPL-3.0",
|
|
"repository": "https://github.com/makeplane/plane.git",
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev --concurrency=18",
|
|
"start": "turbo run start",
|
|
"clean": "turbo run clean && rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
"fix": "turbo run fix",
|
|
"fix:format": "turbo run fix:format",
|
|
"fix:lint": "turbo run fix:lint",
|
|
"check": "turbo run check",
|
|
"check:lint": "turbo run check:lint",
|
|
"check:format": "turbo run check:format",
|
|
"check:types": "turbo run check:types",
|
|
"prepare": "husky",
|
|
"doctor": "npx react-doctor@latest"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "catalog:",
|
|
"lint-staged": "catalog:",
|
|
"oxfmt": "catalog:",
|
|
"oxlint": "catalog:",
|
|
"react-doctor": "^0.4.2",
|
|
"turbo": "catalog:"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,json,css,md}": [
|
|
"pnpm exec oxfmt --no-error-on-unmatched-pattern"
|
|
],
|
|
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
|
|
"pnpm exec oxlint --fix --deny-warnings"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=22.18.0"
|
|
},
|
|
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
|
|
}
|