- Create SQLite database schema with all tables - Implement REST API endpoints for properties, leads, testimonials, FAQ, services - Add seed data with sample properties, testimonials, FAQ - Create Docker configuration for deployment - Add i18n system for translations - Add API client for frontend integration - Create Technical Documentation (TZ.md) - Add detailed README with deployment instructions 🚀 Project is now fully functional: - API: http://localhost:8080/api/* - Properties CRUD with filtering - Lead management - Settings, Testimonials, FAQ, Services APIs - SQLite database with seed data
23 lines
608 B
JSON
23 lines
608 B
JSON
{
|
|
"name": "tenerifeprop",
|
|
"version": "1.0.0",
|
|
"description": "Real Estate Agency Website for Tenerife Island",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run --watch src/server/index.ts",
|
|
"start": "bun run src/server/index.ts",
|
|
"db:init": "bun run src/db/init.ts",
|
|
"db:seed": "bun run src/db/seed.ts",
|
|
"build": "bun build ./src/server/index.ts --outdir ./dist --target bun",
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.0.0",
|
|
"bcrypt": "^5.1.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
} |