Files
plane/package.json

83 lines
2.5 KiB
JSON
Raw Normal View History

2022-11-19 19:51:26 +05:30
{
2025-03-04 20:20:38 +05:30
"name": "plane",
"description": "Open-source project management that unlocks customer value",
2022-11-30 02:21:17 +05:30
"repository": "https://github.com/makeplane/plane.git",
2025-10-21 19:14:43 +05:30
"version": "1.1.0",
2023-08-12 20:30:01 +09:00
"license": "AGPL-3.0",
2022-11-19 19:51:26 +05:30
"private": true,
"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"
2022-11-19 19:51:26 +05:30
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@prettier/plugin-oxc": "0.1.3",
"@vitest/eslint-plugin": "1.5.0",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.4.24",
"eslint-plugin-storybook": "10.0.8",
"globals": "16.5.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.3",
"turbo": "2.6.1",
"typescript-eslint": "8.48.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,json,css,md}": [
"pnpm exec prettier --write --ignore-unknown"
],
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"pnpm exec eslint --fix --max-warnings=0 --no-warn-ignored"
]
2022-12-21 00:56:19 +05:30
},
"pnpm": {
"overrides": {
"express": "catalog:",
"mdast-util-to-hast": "13.2.1",
"valibot": "1.2.0",
2025-11-19 14:56:15 +05:30
"glob": "11.1.0",
"js-yaml": "4.1.1",
"brace-expansion": "2.0.2",
"nanoid": "3.3.8",
"esbuild": "0.25.0",
"@babel/helpers": "7.26.10",
"@babel/runtime": "7.26.10",
"chokidar": "3.6.0",
2025-10-16 14:55:57 +05:30
"happy-dom": "20.0.2",
"tar-fs": "3.0.9",
"prosemirror-view": "1.40.0",
"@types/express": "4.17.23",
"typescript": "catalog:",
"vite": "catalog:"
},
"onlyBuiltDependencies": [
"@sentry/cli",
"turbo"
]
2025-02-12 18:44:31 +05:30
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"engines": {
"node": ">=22.18.0"
}
}