Files
plane/apps/web/package.json
T

84 lines
2.6 KiB
JSON
Raw Normal View History

2022-11-30 02:21:17 +05:30
{
2023-09-03 18:50:30 +05:30
"name": "web",
2025-09-01 19:38:21 +05:30
"version": "1.0.0",
2022-11-30 02:21:17 +05:30
"private": true,
2025-03-04 20:20:38 +05:30
"license": "AGPL-3.0",
2022-11-30 02:21:17 +05:30
"scripts": {
2025-07-08 01:03:12 -07:00
"dev": "next dev --port 3000",
2022-11-30 02:21:17 +05:30
"build": "next build",
"start": "next start",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
2025-07-24 13:14:51 -07:00
"check:lint": "eslint . --max-warnings 821",
"check:types": "tsc --noEmit",
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
"fix:lint": "eslint . --fix",
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\""
2022-11-30 02:21:17 +05:30
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "catalog:",
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "catalog:",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "catalog:",
"@bprogress/next": "^3.2.12",
"@headlessui/react": "^1.7.3",
"@intercom/messenger-js-sdk": "^0.0.12",
2025-08-19 07:36:42 -07:00
"@plane/constants": "workspace:*",
"@plane/editor": "workspace:*",
"@plane/hooks": "workspace:*",
"@plane/i18n": "workspace:*",
"@plane/propel": "workspace:*",
"@plane/services": "workspace:*",
"@plane/shared-state": "workspace:*",
2025-08-19 07:36:42 -07:00
"@plane/types": "workspace:*",
"@plane/ui": "workspace:*",
"@plane/utils": "workspace:*",
2023-10-11 12:05:53 +05:30
"@popperjs/core": "^2.11.8",
"@react-pdf/renderer": "^3.4.5",
"@tanstack/react-table": "^8.21.3",
"axios": "catalog:",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"comlink": "^4.4.1",
2024-12-23 18:45:22 +05:30
"date-fns": "^4.1.0",
2023-05-03 13:36:55 +05:30
"dotenv": "^16.0.3",
2025-08-19 07:36:42 -07:00
"emoji-picker-react": "^4.5.16",
"export-to-csv": "^1.4.0",
"isomorphic-dompurify": "^2.12.0",
"lodash-es": "catalog:",
"lucide-react": "catalog:",
"mobx": "catalog:",
"mobx-react": "catalog:",
"mobx-utils": "catalog:",
"next": "catalog:",
2023-04-20 13:41:24 +05:30
"next-themes": "^0.2.1",
2024-05-08 19:27:48 +05:30
"posthog-js": "^1.131.3",
"react": "catalog:",
2022-11-30 02:21:17 +05:30
"react-color": "^2.19.3",
"react-dom": "catalog:",
2022-11-30 02:21:17 +05:30
"react-dropzone": "^14.2.3",
"react-hook-form": "7.51.5",
2023-04-25 16:54:12 +05:30
"react-markdown": "^8.0.7",
2024-12-31 16:15:40 +05:30
"react-masonry-component": "^6.3.0",
"react-pdf-html": "^2.1.2",
2023-10-11 12:05:53 +05:30
"react-popper": "^2.3.0",
"recharts": "^2.12.7",
"sharp": "catalog:",
"smooth-scroll-into-view-if-needed": "^2.0.2",
"swr": "catalog:",
"tailwind-merge": "^2.0.0",
"use-font-face-observer": "^1.2.2",
"uuid": "catalog:"
2022-11-30 02:21:17 +05:30
},
"devDependencies": {
2025-08-19 07:36:42 -07:00
"@plane/eslint-config": "workspace:*",
"@plane/tailwind-config": "workspace:*",
"@plane/typescript-config": "workspace:*",
"@types/lodash-es": "catalog:",
"@types/node": "18.16.1",
"@types/react": "catalog:",
"@types/react-color": "^3.0.6",
"@types/react-dom": "catalog:",
"prettier": "^3.2.5",
"typescript": "catalog:"
2022-11-30 02:21:17 +05:30
}
}