plane/space/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2023-08-08 07:25:42 +00:00
{
"name": "space",
2024-02-26 14:17:02 +00:00
"version": "0.16.0",
2023-08-08 07:25:42 +00:00
"private": true,
"scripts": {
feat: Editor Core Packaging and Restructuring (#2358) * initialized tiptap component with common tailwind config * added common tailwind config to web * abstracted upload and delete functions * removed tiptap pro extension * fixed types * removed old tailwind config and fixed plane package imports * exported tiptap editor with and without ref * updated package name to @plane/editor * finally fixed import errors * added turbo dependency for tiptap * reverted back types and fixed tailwind * migrated all components to use the common package * removed old tiptap dependency * improved dev experience to build the tiptap package before starting dev server * resolved lock life and missing deps * fixed dependency issue with react type resolution * chore: updated pulls build CI for using turbo builds * comment editor basic version added * new structure of editor components * refactored editor to not require workspace slug * added seperation of extensions and props * refactoring to LiteTextEditor and RichTextEditor * fixed global css issue with highlight js * refactoring tiptap to core/lite/rich text editor * read only editor support added * replaced all read-only instances * trimming html at start and end of content added * onSubmit on enterkey captured * removed absolute imports from editor/core package * removed absolute imports from lite-text-editor * removed absolute imports from rich-text-editor * fixed dependencies in editor package * fixed tailwind config for editor * Enter key behaviour added for Comments * fixed modal form issue * added comment editor with fixed menu * added support for range commands * modified turbo config for build pipeline of space and web projects * fixed shift enter behavior for lists * removed extra margin from access specifiers * removed tiptap instance from web * fixed bugs returning empty editor boxes * fixed toggle Underline behvaiour * updated bubble menu to use core package's utilities * added editor/core readme and fixed imports * fixed ts issues with link plugin * added usage of common dependance for slash commands * completed core package's documentation * fixed tsconfig by removing path aliases * Completed readme for rich-text-editor * Added rich text editor documentation * changed readme title of core package --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
2023-10-13 06:35:49 +00:00
"dev": "turbo run develop",
"develop": "next dev -p 4000",
2023-08-08 07:25:42 +00:00
"build": "next build",
"start": "next start -p 4000",
"lint": "next lint",
"export": "next export"
2023-08-08 07:25:42 +00:00
},
"dependencies": {
"@blueprintjs/core": "^4.16.3",
"@blueprintjs/popover2": "^1.13.3",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
2023-08-08 07:25:42 +00:00
"@headlessui/react": "^1.7.13",
"@mui/material": "^5.14.1",
2023-12-01 07:55:48 +00:00
"@plane/document-editor": "*",
"@plane/lite-text-editor": "*",
"@plane/rich-text-editor": "*",
"@plane/ui": "*",
"@sentry/nextjs": "^7.85.0",
2023-08-08 07:25:42 +00:00
"axios": "^1.3.4",
"clsx": "^2.0.0",
"dotenv": "^16.3.1",
2023-08-08 07:25:42 +00:00
"js-cookie": "^3.0.1",
"lowlight": "^2.9.0",
"lucide-react": "^0.294.0",
"mobx": "^6.10.0",
"mobx-react-lite": "^4.0.3",
2023-12-01 07:55:48 +00:00
"next": "^14.0.3",
"next-themes": "^0.2.1",
2023-08-08 07:25:42 +00:00
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"swr": "^2.2.2",
"tailwind-merge": "^2.0.0",
2023-08-08 07:25:42 +00:00
"typescript": "4.9.5",
"uuid": "^9.0.0"
2023-08-08 07:25:42 +00:00
},
"devDependencies": {
"@types/js-cookie": "^3.0.3",
"@types/node": "18.14.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
2023-08-08 07:25:42 +00:00
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "8.34.0",
"eslint-config-custom": "*",
"eslint-config-next": "13.2.1",
"tailwind-config-custom": "*",
"tsconfig": "*"
2023-08-08 07:25:42 +00:00
}
}