- Add validation schemas for all admin endpoints - Add English (en.json) i18n translations - Improve input validation using Zod - Add better error handling for all CRUD operations
25 lines
661 B
JSON
25 lines
661 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": {
|
|
"bcrypt": "^5.1.0",
|
|
"hono": "^4.0.0",
|
|
"uuid": "^9.0.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^6.0.0",
|
|
"@types/bun": "^1.3.11",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
} |