Files
plane/package.json

44 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-11-19 19:51:26 +05:30
{
2025-03-04 20:20:38 +05:30
"name": "plane",
2026-04-20 17:20:12 +05:30
"version": "1.3.1",
2022-11-19 19:51:26 +05:30
"private": true,
"description": "Open-source project management that unlocks customer value",
"license": "AGPL-3.0",
"repository": "https://github.com/makeplane/plane.git",
2022-11-19 19:51:26 +05:30
"scripts": {
2022-11-30 02:21:17 +05:30
"build": "turbo run build",
"dev": "turbo run dev --concurrency=18",
2022-11-30 02:21:17 +05:30
"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",
2025-08-23 00:33:38 +05:30
"fix:format": "turbo run fix:format",
"fix:lint": "turbo run fix:lint",
"check": "turbo run check",
"check:lint": "turbo run check:lint",
2025-11-21 21:52:37 +07:00
"check:format": "turbo run check:format",
"check:types": "turbo run check:types",
"prepare": "husky",
"doctor": "npx react-doctor@latest"
2022-11-19 19:51:26 +05:30
},
"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"
]
2022-12-21 00:56:19 +05:30
},
"engines": {
"node": ">=22.18.0"
},
chore: bump turbo to 2.9.14, migrate pnpm config to workspace yaml (#9147) * chore: bump turbo to 2.9.14, migrate pnpm config to workspace yaml - Bump turbo from 2.9.4 to 2.9.14 in root package.json and the four production Dockerfiles (web, live, admin, space). - Move pnpm.overrides, onlyBuiltDependencies, and ignoredBuiltDependencies from package.json into pnpm-workspace.yaml. pnpm v10+ no longer reads the pnpm field in package.json, so the full overrides block and most of onlyBuiltDependencies were being silently ignored. - Add @plane/utils as a workspace dependency to the live server. * chore: drop unused allowBuilds block, bump lodash-es to 4.18.1 - Remove the `allowBuilds` block from pnpm-workspace.yaml. It is not a recognized pnpm v10/v11 key and its values were inconsistent with the actual `onlyBuiltDependencies` / `ignoredBuiltDependencies` configuration. - Bump `lodash-es` catalog entry from 4.18.0 to 4.18.1. With overrides now applied workspace-wide, 4.18.0 (marked deprecated as a "bad release") was being enforced everywhere. * fix: use pnpm v11 allowBuilds in place of removed legacy keys `onlyBuiltDependencies` and `ignoredBuiltDependencies` were removed in pnpm v11. They were being silently ignored on this branch, which caused `ERR_PNPM_IGNORED_BUILDS` to fail CI under `--frozen-lockfile`. Replace them with the v11-native `allowBuilds:` block, mapping the previous allowlist to `true` and the previous denylist (sharp) to `false`. Locally verified that the build scripts for @parcel/watcher, @swc/core, esbuild, and msgpackr-extract now run on install.
2026-05-27 16:06:15 +05:30
"packageManager": "pnpm@11.3.0+sha512.2c403d6594527287672b1f7056343a1f7c3634036a67ffabfcc2b3d7595d843768f8787148d1b57cf7956c90606bbd192857c363af19e96d2d0ec9ec5741d215"
}