Files
colanode/apps/server/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

2024-07-29 09:13:36 +02:00
{
2024-11-16 19:40:51 +01:00
"$schema": "https://json.schemastore.org/package.json",
2024-11-05 22:33:43 +01:00
"name": "@colanode/server",
2024-07-29 09:13:36 +02:00
"version": "1.0.0",
2024-12-28 20:56:33 +01:00
"author": "Colanode",
2024-11-05 22:33:43 +01:00
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist",
".env"
],
2024-07-29 09:13:36 +02:00
"scripts": {
2024-11-10 10:09:53 +01:00
"compile": "tsc --noEmit -p tsconfig.json",
"build": "npm run compile && tsup-node",
2024-11-05 22:33:43 +01:00
"clean": "del-cli dist isolate tsconfig.tsbuildinfo",
"lint": "eslint . --max-warnings 0",
2025-07-21 11:33:07 +02:00
"dev": "tsx watch --env-file .env src/index.ts"
2024-07-29 09:13:36 +02:00
},
"description": "",
"devDependencies": {
2025-10-07 20:22:27 +02:00
"@types/node": "^24.7.0",
"@types/nodemailer": "^7.0.2",
2025-08-02 08:40:10 +02:00
"@types/pg": "^8.15.5",
2025-04-08 16:51:53 +02:00
"@types/ws": "^8.18.1",
2025-04-23 18:04:40 +02:00
"nodemon": "^3.1.10",
2025-08-11 20:47:02 +02:00
"tsup": "^8.5.0"
2024-07-29 09:13:36 +02:00
},
"dependencies": {
2025-10-07 20:22:27 +02:00
"@aws-sdk/client-s3": "^3.901.0",
2024-12-28 20:54:56 +01:00
"@colanode/core": "*",
"@colanode/crdt": "*",
2025-08-02 08:40:10 +02:00
"@fastify/cors": "^11.1.0",
2025-07-23 10:10:23 +02:00
"@fastify/websocket": "^11.2.0",
"@google-cloud/storage": "^7.15.0",
2025-10-07 20:22:27 +02:00
"@langchain/core": "^0.3.78",
"@langchain/google-genai": "^0.2.18",
2025-09-11 14:19:45 +02:00
"@langchain/langgraph": "^0.4.9",
2025-10-07 20:22:27 +02:00
"@langchain/openai": "^0.6.14",
"@node-rs/argon2": "^2.0.2",
2025-10-07 20:22:27 +02:00
"@redis/client": "^5.8.3",
"@tus/azure-store": "^2.0.0",
"@tus/file-store": "^2.0.0",
"@tus/gcs-store": "^2.0.0",
2025-08-29 16:25:52 +02:00
"@tus/s3-store": "^2.0.1",
"@tus/server": "^2.3.0",
2025-10-07 20:22:27 +02:00
"bullmq": "^5.61.0",
Web version (#43) * Create client package * Create the UI package * Init web app * Use isomorphic 'ws' for web sockets * File and asset implementations * Use Opfs SAH version of sqlite in browser * Generate Svg sprites for emojis and icons * Include emojis sprite * Improve and refactor assets * More assets improvements * Implement emoji and icons db import as readonly * Improve import paths * Handle concurrency limits for sqlite * Fix event broadcast in web * Pass windowId for subscribe and unsubscribe queries in desktop * Remove asset context * Implement avatar upload/download with the new structure * Improve file handlings * Move the necessary dependencies to client and ui packages * Update packages * Improve open file dialog * Make sure database files are deleted in browser * Improve avatar loading * Improve file loading * Fix some assets * Implement asset caching for offline access * Small fixes and improvements * Use server instead of pre signed urls for file upload/download * Cleanup some client related metadata * Switch Axios with ky * Refactor mutation results * Minor concurrency fix * Refactor web sockets * Improve file uploading * Handle connection close on server * Use stream for downloading the file * Add config options for cors * Update document in all tabs on local change * Include necessary icons for web * Update docker compose * Implement server upgrade required component * Use correct client type and platform in web and desktop * Improve service worker * Improve versioning * Fix an import * Minor fixes * Update some user endpoints * Minor endpoint changes * Enable app badge for desktop * Add error handling in some database operations * Update mutation naming convention * Update query naming convention * Update event and some metadata naming conventions * Update event and job naming conventions in server * Update Github workflow files * Restructure assets directory * Update packages * Upgrade to Zod v4 * Upgrade to react 19 * Upgrade to tailwind v4 * Minor ui improvements * Fix some cursor pointers * Add browser not supported message in web * Enhance server create flow, allow insecure connections and custom api paths * Execute electron-rebuild as postinstall command * Update docker compose
2025-06-11 00:14:17 +02:00
"diff": "^8.0.2",
2025-10-07 20:22:27 +02:00
"dotenv": "^17.2.3",
"fastify": "^5.6.1",
2025-09-11 14:19:45 +02:00
"fastify-type-provider-zod": "^6.0.0",
2025-01-05 20:25:48 +01:00
"handlebars": "^4.7.8",
2024-10-04 18:21:16 +02:00
"js-sha256": "^0.11.0",
2025-10-07 20:22:27 +02:00
"ky": "^1.11.0",
"kysely": "^0.28.7",
"langchain": "^0.3.35",
2025-08-29 16:25:52 +02:00
"langfuse-langchain": "^3.38.5",
"ms": "^2.1.3",
2025-10-07 20:22:27 +02:00
"nodemailer": "^7.0.9",
2025-07-04 09:12:30 +02:00
"pg": "^8.16.3",
2025-10-07 20:22:27 +02:00
"pino": "^10.0.0",
"sharp": "^0.34.4",
"zod": "^4.1.12"
2024-07-29 09:13:36 +02:00
}
}