mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "live",
|
|
"version": "0.25.1",
|
|
"description": "",
|
|
"main": "./src/server.ts",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently \"babel src --out-dir dist --extensions '.ts,.js' --watch\" \"nodemon dist/server.js\"",
|
|
"build": "babel src --out-dir dist --extensions \".ts,.js\"",
|
|
"start": "node dist/server.js",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@hocuspocus/extension-database": "^2.15.0",
|
|
"@hocuspocus/extension-logger": "^2.15.0",
|
|
"@hocuspocus/extension-redis": "^2.15.0",
|
|
"@hocuspocus/server": "^2.15.0",
|
|
"@plane/constants": "*",
|
|
"@plane/editor": "*",
|
|
"@plane/types": "*",
|
|
"@sentry/node": "^9.0.1",
|
|
"@sentry/profiling-node": "^8.28.0",
|
|
"@tiptap/core": "2.10.4",
|
|
"@tiptap/html": "2.11.0",
|
|
"axios": "^1.7.9",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"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",
|
|
"uuid": "^10.0.0",
|
|
"y-prosemirror": "^1.2.15",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.20"
|
|
},
|
|
"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",
|
|
"concurrently": "^9.0.1",
|
|
"nodemon": "^3.1.7",
|
|
"ts-node": "^10.9.2",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "5.3.3"
|
|
}
|
|
}
|