mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* fix: async loading of the redis extension * fix: initialize redis connection and hocuspocusserver only during server start * fix: removed console logs * fix: remove async * fix: error handling and shutting down gracefully in unhandled errors * feat: added compression library * fix: added helmet for security headers
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "live",
|
|
"version": "0.22.0",
|
|
"description": "",
|
|
"main": "./src/server.ts",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "babel src --out-dir dist --extensions \".ts,.js\"",
|
|
"start": "node dist/server.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@hocuspocus/extension-database": "^2.11.3",
|
|
"@hocuspocus/extension-logger": "^2.11.3",
|
|
"@hocuspocus/extension-redis": "^2.13.5",
|
|
"@hocuspocus/server": "^2.11.3",
|
|
"@plane/editor": "*",
|
|
"@plane/types": "*",
|
|
"@sentry/node": "^8.28.0",
|
|
"@sentry/profiling-node": "^8.28.0",
|
|
"@tiptap/core": "^2.4.0",
|
|
"@tiptap/html": "^2.3.0",
|
|
"axios": "^1.7.2",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.19.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",
|
|
"y-prosemirror": "^1.2.9",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.14"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.25.6",
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@types/compression": "^1.7.5",
|
|
"@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",
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
"nodemon": "^3.1.0",
|
|
"ts-node": "^10.9.2",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|