mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "live",
|
|
"version": "0.25.3",
|
|
"license": "AGPL-3.0",
|
|
"description": "A realtime collaborative server powers Plane's rich text editor",
|
|
"main": "./dist/start.js",
|
|
"module": "./dist/start.mjs",
|
|
"types": "./dist/start.d.ts",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsup --watch --onSuccess 'node --env-file=.env dist/start.js'",
|
|
"build": "tsup",
|
|
"start": "node --env-file=.env dist/start.js",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"dependencies": {
|
|
"@hocuspocus/extension-database": "^2.15.0",
|
|
"@hocuspocus/extension-logger": "^2.15.0",
|
|
"@hocuspocus/extension-redis": "^2.15.0",
|
|
"@hocuspocus/server": "^2.15.0",
|
|
"@hocuspocus/transformer": "^2.15.2",
|
|
"@plane/constants": "*",
|
|
"@plane/decorators": "*",
|
|
"@plane/editor": "*",
|
|
"@plane/logger": "*",
|
|
"@plane/types": "*",
|
|
"@tiptap/core": "2.10.4",
|
|
"@tiptap/html": "2.11.0",
|
|
"axios": "^1.8.3",
|
|
"compression": "^1.7.4",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"express-ws": "^5.0.2",
|
|
"helmet": "^7.1.0",
|
|
"ioredis": "^5.4.1",
|
|
"lodash": "^4.17.21",
|
|
"morgan": "^1.10.0",
|
|
"pino-http": "^10.3.0",
|
|
"pino-pretty": "^11.2.2",
|
|
"reflect-metadata": "^0.2.2",
|
|
"uuid": "^10.0.0",
|
|
"y-prosemirror": "^1.2.15",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.20",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/compression": "^1.7.5",
|
|
"@types/cookie-parser": "^1.4.8",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/dotenv": "^8.2.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/express-ws": "^3.0.4",
|
|
"@types/node": "^20.14.9",
|
|
"concurrently": "^9.0.1",
|
|
"nodemon": "^3.1.7",
|
|
"tsup": "8.3.0",
|
|
"typescript": "5.3.3"
|
|
}
|
|
}
|