mirror of
https://github.com/makeplane/plane.git
synced 2026-06-14 03:30:00 +00:00
3f57fefdb4
Centralize every external dependency version in the pnpm catalog (pnpm-workspace.yaml) and reference them via `catalog:` across all apps and packages. Packages that previously used differing versions were unified to the highest (notably @react-pdf/renderer ^3.4.5 -> ^4.3.0 in apps/web).
42 lines
1.3 KiB
JSON
42 lines
1.3 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"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "catalog:",
|
|
"lint-staged": "catalog:",
|
|
"oxfmt": "catalog:",
|
|
"oxlint": "catalog:",
|
|
"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"
|
|
}
|