mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 07:39:32 +01:00
* [WEB-1116] feat: pages realtime sync (#5057) * init: live server for editor realtime sync * chore: authentication added * chore: updated logic to convert html to binary for old pages * chore: added description json on page update * chore: made all functions generic * chore: save description in json and html formats * refactor: document editor components * chore: uncomment ui package components * fix: without props extensions refactor * fix: merge conflicts resolved from preview * chore: init docker compose * chore: pages custom error codes * chore: add health check endpoint to the live server * chore: update without props extensions type * chore: better error handling * chore: update react-hook-form versions --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> * fix: docker related fixes * fix: module type fixes * fix: nginx update * fix: adding live server workflow * fix: workflow fixes * fix: docker compose fixes * fix: workflow fixes * fix: path config * fix: docker compose warnings * fix: nginx port forwarding * fix: update docker compose with new env * fix: env var fixes * fix: error handling * fix: docker compose env var * fix: compose fixes * chore: update server start message * chore: handle errors * fix: build errors * chore: update port * chore: update server port * chore: show error on authentication fail * chore: show error on authentication fail * feat: add redis extension * chore: updated restore version logic --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Palanikannan M <akashmalinimurugu@gmail.com>
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "admin",
|
|
"version": "0.22.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "turbo run develop",
|
|
"develop": "next dev --port 3001",
|
|
"build": "next build",
|
|
"preview": "next build && next start",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.19",
|
|
"@plane/types": "*",
|
|
"@plane/ui": "*",
|
|
"@plane/constants": "*",
|
|
"@tailwindcss/typography": "^0.5.9",
|
|
"@types/lodash": "^4.17.0",
|
|
"autoprefixer": "10.4.14",
|
|
"axios": "^1.7.4",
|
|
"js-cookie": "^3.0.5",
|
|
"lodash": "^4.17.21",
|
|
"lucide-react": "^0.356.0",
|
|
"mobx": "^6.12.0",
|
|
"mobx-react": "^9.1.1",
|
|
"next": "^14.2.3",
|
|
"next-themes": "^0.2.1",
|
|
"postcss": "^8.4.38",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "7.51.5",
|
|
"swr": "^2.2.4",
|
|
"tailwindcss": "3.3.2",
|
|
"uuid": "^9.0.1",
|
|
"zxcvbn": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-cookie": "^3.0.6",
|
|
"@types/node": "18.16.1",
|
|
"@types/react": "^18.2.48",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@types/uuid": "^9.0.8",
|
|
"@types/zxcvbn": "^4.4.4",
|
|
"eslint-config-custom": "*",
|
|
"tailwind-config-custom": "*",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.4.2"
|
|
}
|
|
}
|