2024-09-02 17:54:12 +05:30
|
|
|
{
|
|
|
|
|
"name": "live",
|
2024-12-10 21:02:29 +05:30
|
|
|
"version": "0.24.1",
|
2024-09-02 17:54:12 +05:30
|
|
|
"description": "",
|
|
|
|
|
"main": "./src/server.ts",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
2024-12-06 15:00:11 +05:30
|
|
|
"dev": "concurrently \"babel src --out-dir dist --extensions '.ts,.js' --watch\" \"nodemon dist/server.js\"",
|
2024-09-03 17:03:50 +05:30
|
|
|
"build": "babel src --out-dir dist --extensions \".ts,.js\"",
|
2024-09-23 17:10:38 +05:30
|
|
|
"start": "node dist/server.js",
|
2024-12-06 15:00:11 +05:30
|
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
|
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet"
|
2024-09-02 17:54:12 +05:30
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"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-12-22 22:08:04 +05:30
|
|
|
"@plane/constants": "*",
|
2024-09-02 17:54:12 +05:30
|
|
|
"@plane/editor": "*",
|
|
|
|
|
"@plane/types": "*",
|
2025-02-12 13:58:25 +05:30
|
|
|
"@sentry/node": "^9.0.1",
|
2024-09-05 18:15:46 +05:30
|
|
|
"@sentry/profiling-node": "^8.28.0",
|
2025-01-09 14:52:41 +05:30
|
|
|
"@tiptap/core": "2.10.4",
|
|
|
|
|
"@tiptap/html": "2.11.0",
|
2025-01-08 00:19:55 +05:30
|
|
|
"axios": "^1.7.9",
|
2024-09-07 14:24:20 +05:30
|
|
|
"compression": "^1.7.4",
|
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",
|
2024-09-05 18:15:46 +05:30
|
|
|
"morgan": "^1.10.0",
|
|
|
|
|
"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": {
|
2024-09-03 17:03:50 +05:30
|
|
|
"@babel/cli": "^7.25.6",
|
|
|
|
|
"@babel/core": "^7.25.2",
|
|
|
|
|
"@babel/preset-env": "^7.25.4",
|
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-09-07 14:24:20 +05:30
|
|
|
"@types/compression": "^1.7.5",
|
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",
|
|
|
|
|
"@types/express": "^4.17.21",
|
|
|
|
|
"@types/express-ws": "^3.0.4",
|
|
|
|
|
"@types/node": "^20.14.9",
|
2024-09-03 17:03:50 +05:30
|
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
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",
|
2024-09-03 15:31:32 +05:30
|
|
|
"tsup": "^7.2.0",
|
2024-09-23 17:10:38 +05:30
|
|
|
"typescript": "5.3.3"
|
2024-09-02 17:54:12 +05:30
|
|
|
}
|
|
|
|
|
}
|