- Set up project architecture with TypeScript types - Create property, user, lead, and content type definitions - Add i18n translations (ES, RU) - Add sample JSON data for properties and leads - Create comprehensive architecture documentation - Set up package.json with Bun + Hono stack
38 lines
937 B
JSON
38 lines
937 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",
|
|
"build": "bun build ./public --outdir ./dist",
|
|
"start": "bun run src/server/index.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"format": "prettier --write \"src/**/*.ts\" \"public/**/*.{html,css,js}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"real-estate",
|
|
"tenerife",
|
|
"property",
|
|
"canary-islands",
|
|
"land"
|
|
],
|
|
"author": "UniqueSoft",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"hono": "^4.0.0",
|
|
"zod": "^3.22.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"typescript": "^5.3.0",
|
|
"prettier": "^3.2.0",
|
|
"eslint": "^8.56.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |