Files
XIP/backend/package.json
arussac 12afb71a67 feat: initialize project with Docker, PostgreSQL, Redis, and Vue.js frontend
- Added docker-compose.yml for PostgreSQL and Redis services with health checks.
- Created frontend directory with initial Vue.js setup including package.json, vite.config.ts, and TypeScript configuration.
- Implemented main application structure with App.vue and HomePage.vue components.
- Added message fetching and posting functionality in HomePage.vue.
- Included necessary styles and scripts for Ionic framework integration.
- Developed a dev-stack script to manage Docker containers and run backend/frontend servers.
2026-05-29 11:47:52 +02:00

21 lines
444 B
JSON

{
"name": "xip-backend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bun --hot run src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"hono": "^4.6.0",
"ioredis": "^5.4.0"
},
"devDependencies": {
"@types/bun": "latest",
"prisma": "^5.22.0",
"typescript": "^5.6.0"
}
}