feat: initial mIRCcloud.com scaffold
- Express + TypeScript backend with IRC connection manager - React + Vite frontend with mIRC-inspired theme - Drizzle ORM + PostgreSQL schema (users, connections, channels, messages) - Redis pub/sub for real-time WebSocket delivery across replicas - IRC color code parser (16 + 99 extended palette) - Kubernetes manifests for homecloud deployment - Multi-stage Dockerfile with non-root user - docker-compose for local development
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "mirccloud-server",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "tsx watch src/index.ts",
|
||||
"build": "tsc",
|
||||
"start": "node dist/index.js",
|
||||
"db:generate": "drizzle-kit generate",
|
||||
"db:migrate": "drizzle-kit migrate"
|
||||
},
|
||||
"dependencies": {
|
||||
"typescript": "5.5.4",
|
||||
"tsx": "4.16.2",
|
||||
"@types/node": "20.14.12",
|
||||
"express": "4.19.2",
|
||||
"@types/express": "4.17.21",
|
||||
"cors": "2.8.5",
|
||||
"ws": "8.18.0",
|
||||
"@types/ws": "8.5.11",
|
||||
"irc-framework": "4.13.1",
|
||||
"drizzle-orm": "0.32.1",
|
||||
"postgres": "3.4.4",
|
||||
"ioredis": "5.4.1",
|
||||
"jsonwebtoken": "9.0.2",
|
||||
"@types/jsonwebtoken": "9.0.6",
|
||||
"bcrypt": "5.1.1",
|
||||
"@types/bcrypt": "5.0.2",
|
||||
"zod": "3.23.8",
|
||||
"dotenv": "16.4.5",
|
||||
"@types/cors": "2.8.17"
|
||||
},
|
||||
"devDependencies": {
|
||||
"drizzle-kit": "0.23.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user