Files
colanode/apps/server/package.json

65 lines
1.7 KiB
JSON
Raw Permalink 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",
"dev": "tsx watch --env-file .env src/index.ts",
"test": "vitest run --config vitest.config.ts"
2024-07-29 09:13:36 +02:00
},
"description": "",
"devDependencies": {
"@testcontainers/postgresql": "^11.11.0",
"@testcontainers/redis": "^11.11.0",
2026-02-09 15:42:21 +01:00
"@types/node": "^25.2.2",
2026-01-30 17:38:34 +01:00
"@types/nodemailer": "^7.0.9",
2026-01-08 11:17:53 +01:00
"@types/pg": "^8.16.0",
2025-04-08 16:51:53 +02:00
"@types/ws": "^8.18.1",
"testcontainers": "^11.11.0",
"tsup": "^8.5.1",
2026-02-09 15:42:21 +01:00
"vite-tsconfig-paths": "^6.1.0",
2026-01-30 17:38:34 +01:00
"vitest": "^4.0.18"
2024-07-29 09:13:36 +02:00
},
"dependencies": {
2026-02-09 15:42:21 +01:00
"@aws-sdk/client-s3": "^3.985.0",
2024-12-28 20:54:56 +01:00
"@colanode/core": "*",
"@colanode/crdt": "*",
2026-01-08 11:17:53 +01:00
"@fastify/cors": "^11.2.0",
2025-07-23 10:10:23 +02:00
"@fastify/websocket": "^11.2.0",
2026-02-09 15:42:21 +01:00
"@google-cloud/storage": "^7.19.0",
"@node-rs/argon2": "^2.0.2",
2025-11-19 13:55:39 -08:00
"@redis/client": "^5.10.0",
"@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",
2026-02-09 15:42:21 +01:00
"bullmq": "^5.67.3",
2026-01-30 17:38:34 +01:00
"diff": "^8.0.3",
2026-02-09 15:42:21 +01:00
"dotenv": "^17.2.4",
"fastify": "^5.7.4",
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",
2026-01-30 17:38:34 +01:00
"ky": "^1.14.3",
2026-02-09 15:42:21 +01:00
"kysely": "^0.28.11",
"ms": "^2.1.3",
2026-02-09 15:42:21 +01:00
"nodemailer": "^8.0.1",
"pg": "^8.18.0",
2026-01-30 17:38:34 +01:00
"pino": "^10.3.0",
2025-11-19 13:55:39 -08:00
"sharp": "^0.34.5",
2026-01-30 17:38:34 +01:00
"zod": "^4.3.6"
2024-07-29 09:13:36 +02:00
}
}