mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* chore(repo): migrate to pnpm * chore(repo): cleanup pnpm integration with turbo * chore(repo): run lint * chore(repo): cleanup tsconfigs * chore: align TypeScript to 5.8.3 across monorepo; update pnpm override and catalog; pnpm install to update lockfile * chore(repo): revert logger.ts changes * fix: type errors * fix: build errors * fix: pnpm home setup in dockerfiles --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
66 lines
2.0 KiB
JSON
66 lines
2.0 KiB
JSON
{
|
|
"name": "live",
|
|
"version": "0.28.0",
|
|
"license": "AGPL-3.0",
|
|
"description": "A realtime collaborative server powers Plane's rich text editor",
|
|
"main": "./src/server.ts",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsup --watch --onSuccess 'node --env-file=.env dist/server.js'",
|
|
"build": "tsc --noEmit && tsup",
|
|
"start": "node --env-file=.env dist/server.js",
|
|
"check:lint": "eslint . --max-warnings 10",
|
|
"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}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"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",
|
|
"@plane/editor": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@tiptap/core": "^2.22.3",
|
|
"@tiptap/html": "^2.22.3",
|
|
"axios": "1.11.0",
|
|
"compression": "1.8.1",
|
|
"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.1",
|
|
"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": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/compression": "1.8.1",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.23",
|
|
"@types/express-ws": "^3.0.5",
|
|
"@types/node": "^20.14.9",
|
|
"@types/pino-http": "^5.8.4",
|
|
"@types/uuid": "^9.0.1",
|
|
"concurrently": "^9.0.1",
|
|
"nodemon": "^3.1.7",
|
|
"ts-node": "^10.9.2",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3",
|
|
"ws": "^8.18.3"
|
|
}
|
|
}
|