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",
|
2024-11-16 16:55:45 +01:00
|
|
|
"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",
|
2025-10-11 01:59:30 +02:00
|
|
|
"@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",
|
2025-01-10 15:31:38 +01:00
|
|
|
"@node-rs/argon2": "^2.0.2",
|
2025-10-07 20:22:27 +02:00
|
|
|
"@redis/client": "^5.8.3",
|
2025-10-11 01:59:30 +02:00
|
|
|
"@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",
|
2025-08-01 14:13:40 +02:00
|
|
|
"@tus/server": "^2.3.0",
|
2025-10-07 20:22:27 +02:00
|
|
|
"bullmq": "^5.61.0",
|
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",
|
2025-08-01 14:13:40 +02:00
|
|
|
"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
|
|
|
}
|
|
|
|
|
}
|