2024-09-02 17:54:12 +05:30
|
|
|
{
|
|
|
|
|
"name": "live",
|
2025-07-28 12:51:19 +05:30
|
|
|
"version": "0.28.0",
|
2025-03-04 20:20:38 +05:30
|
|
|
"license": "AGPL-3.0",
|
|
|
|
|
"description": "A realtime collaborative server powers Plane's rich text editor",
|
2024-09-02 17:54:12 +05:30
|
|
|
"main": "./src/server.ts",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2025-07-01 19:19:44 +05:30
|
|
|
"dev": "tsup --watch --onSuccess 'node --env-file=.env dist/server.js'",
|
2025-07-02 18:20:18 +05:30
|
|
|
"build": "tsc --noEmit && tsup",
|
|
|
|
|
"start": "node --env-file=.env dist/server.js",
|
2025-07-24 13:14:51 -07:00
|
|
|
"check:lint": "eslint . --max-warnings 10",
|
2025-07-02 18:20:18 +05:30
|
|
|
"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}\"",
|
2025-07-04 14:23:18 +05:30
|
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
2024-09-02 17:54:12 +05:30
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"dependencies": {
|
2025-01-15 16:18:49 +05:30
|
|
|
"@hocuspocus/extension-database": "^2.15.0",
|
|
|
|
|
"@hocuspocus/extension-logger": "^2.15.0",
|
|
|
|
|
"@hocuspocus/extension-redis": "^2.15.0",
|
|
|
|
|
"@hocuspocus/server": "^2.15.0",
|
2024-09-02 17:54:12 +05:30
|
|
|
"@plane/editor": "*",
|
|
|
|
|
"@plane/types": "*",
|
2025-07-21 19:25:49 +05:30
|
|
|
"@tiptap/core": "^2.22.3",
|
|
|
|
|
"@tiptap/html": "^2.22.3",
|
2025-07-24 13:50:37 +05:30
|
|
|
"axios": "1.11.0",
|
2025-07-18 13:27:53 +05:30
|
|
|
"compression": "1.8.1",
|
2024-09-05 18:15:46 +05:30
|
|
|
"cors": "^2.8.5",
|
2024-09-02 17:54:12 +05:30
|
|
|
"dotenv": "^16.4.5",
|
2024-12-09 02:35:48 +05:30
|
|
|
"express": "^4.21.2",
|
2024-09-02 17:54:12 +05:30
|
|
|
"express-ws": "^5.0.2",
|
2024-09-07 14:24:20 +05:30
|
|
|
"helmet": "^7.1.0",
|
2024-09-05 18:15:46 +05:30
|
|
|
"ioredis": "^5.4.1",
|
2024-09-02 17:54:12 +05:30
|
|
|
"lodash": "^4.17.21",
|
2025-07-18 13:27:53 +05:30
|
|
|
"morgan": "1.10.1",
|
2024-09-05 18:15:46 +05:30
|
|
|
"pino-http": "^10.3.0",
|
|
|
|
|
"pino-pretty": "^11.2.2",
|
2024-09-23 16:44:50 +05:30
|
|
|
"uuid": "^10.0.0",
|
2025-01-15 16:18:49 +05:30
|
|
|
"y-prosemirror": "^1.2.15",
|
2024-09-02 17:54:12 +05:30
|
|
|
"y-protocols": "^1.0.6",
|
2025-01-15 16:18:49 +05:30
|
|
|
"yjs": "^13.6.20"
|
2024-09-02 17:54:12 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-07-02 18:20:18 +05:30
|
|
|
"@plane/eslint-config": "*",
|
|
|
|
|
"@plane/typescript-config": "*",
|
2025-07-18 13:27:53 +05:30
|
|
|
"@types/compression": "1.8.1",
|
2024-09-05 18:15:46 +05:30
|
|
|
"@types/cors": "^2.8.17",
|
2024-09-02 17:54:12 +05:30
|
|
|
"@types/dotenv": "^8.2.0",
|
2025-07-24 13:14:51 -07:00
|
|
|
"@types/express": "^4.17.23",
|
|
|
|
|
"@types/express-ws": "^3.0.5",
|
2024-09-02 17:54:12 +05:30
|
|
|
"@types/node": "^20.14.9",
|
2025-07-01 19:19:44 +05:30
|
|
|
"@types/pino-http": "^5.8.4",
|
2024-09-30 17:03:29 +05:30
|
|
|
"concurrently": "^9.0.1",
|
|
|
|
|
"nodemon": "^3.1.7",
|
2024-09-02 17:54:12 +05:30
|
|
|
"ts-node": "^10.9.2",
|
2025-05-28 02:17:23 +05:30
|
|
|
"tsup": "8.4.0",
|
2025-07-24 13:14:51 -07:00
|
|
|
"typescript": "5.8.3",
|
|
|
|
|
"ws": "^8.18.3"
|
2024-09-02 17:54:12 +05:30
|
|
|
}
|
|
|
|
|
}
|