Files
plane/apps/space/package.json
T

68 lines
2.2 KiB
JSON
Raw Normal View History

2023-08-08 12:55:42 +05:30
{
2023-08-21 18:12:41 +05:30
"name": "space",
2025-10-21 19:14:43 +05:30
"version": "1.1.0",
2023-08-08 12:55:42 +05:30
"private": true,
2025-03-04 20:20:38 +05:30
"license": "AGPL-3.0",
"type": "module",
2023-08-08 12:55:42 +05:30
"scripts": {
"dev": "react-router dev --port 3002",
"build": "react-router build",
"preview": "react-router build && PORT=3002 react-router-serve ./build/server/index.js",
"start": "PORT=3002 react-router-serve ./build/server/index.js",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf .react-router && rm -rf node_modules && rm -rf dist && rm -rf build",
2025-12-05 17:33:51 +07:00
"check:lint": "eslint . --max-warnings=932",
"check:types": "react-router typegen && tsc --noEmit",
2025-12-05 17:33:51 +07:00
"check:format": "prettier --check .",
"fix:lint": "eslint . --fix --max-warnings=932",
"fix:format": "prettier --write ."
2023-08-08 12:55:42 +05:30
},
"dependencies": {
"@bprogress/core": "catalog:",
2025-11-06 14:08:48 +05:30
"@headlessui/react": "^1.7.19",
2025-08-19 07:36:42 -07:00
"@plane/constants": "workspace:*",
"@plane/editor": "workspace:*",
"@plane/i18n": "workspace:*",
"@plane/propel": "workspace:*",
"@plane/services": "workspace:*",
"@plane/types": "workspace:*",
"@plane/ui": "workspace:*",
"@plane/utils": "workspace:*",
"@popperjs/core": "^2.11.8",
"@react-router/node": "catalog:",
"@react-router/serve": "catalog:",
"@sentry/react-router": "catalog:",
"axios": "catalog:",
"clsx": "^2.0.0",
2024-12-23 18:45:22 +05:30
"date-fns": "^4.1.0",
"isbot": "^5.1.31",
"lodash-es": "catalog:",
"lucide-react": "catalog:",
"mobx": "catalog:",
"mobx-react": "catalog:",
"mobx-utils": "catalog:",
"next-themes": "^0.2.1",
"react": "catalog:",
"react-dom": "catalog:",
2024-05-08 23:01:20 +05:30
"react-dropzone": "^14.2.3",
"react-hook-form": "7.51.5",
2024-05-08 23:01:20 +05:30
"react-popper": "^2.3.0",
"react-router": "catalog:",
"react-router-dom": "catalog:",
"swr": "catalog:",
"uuid": "catalog:"
2023-08-08 12:55:42 +05:30
},
"devDependencies": {
"@dotenvx/dotenvx": "catalog:",
2025-08-19 07:36:42 -07:00
"@plane/tailwind-config": "workspace:*",
"@plane/typescript-config": "workspace:*",
"@react-router/dev": "catalog:",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"typescript": "catalog:",
2025-11-10 13:13:22 +05:30
"vite": "catalog:",
"vite-tsconfig-paths": "^5.1.4"
2023-08-08 12:55:42 +05:30
}
}