Telegram Bot + Mini App for city walking quests. - React 19 + TypeScript + Vite 6 frontend - Express 5 + PostgreSQL backend - grammY Telegram bot with DeepSeek AI - GitLab CI/CD: lint, build, deploy to production Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "guidly",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently \"vite\" \"tsx watch bot/index.ts\" \"tsx watch server/index.ts\"",
|
|
"dev:bot": "tsx watch bot/index.ts",
|
|
"dev:app": "vite",
|
|
"build": "tsc -b && tsc -p tsconfig.server.json && tsc -p tsconfig.bot.json && vite build",
|
|
"build:bot": "tsc -p tsconfig.bot.json",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"migrate": "tsx scripts/migrate.ts"
|
|
},
|
|
"dependencies": {
|
|
"@grammyjs/conversations": "^2.0.3",
|
|
"cookie-parser": "^1.4.7",
|
|
"dotenv": "^17.2.4",
|
|
"express": "^5.2.1",
|
|
"grammy": "^1.35.0",
|
|
"openai": "^4.80.0",
|
|
"pg": "^8.17.2",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-router-dom": "^7.0.0",
|
|
"zod": "^3.24.0",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.17.0",
|
|
"@types/cookie-parser": "^1.4.10",
|
|
"@types/express": "^5.0.6",
|
|
"@types/pg": "^8.16.0",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"concurrently": "^9.2.1",
|
|
"eslint": "^9.17.0",
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
"eslint-plugin-react-refresh": "^0.4.16",
|
|
"globals": "^15.13.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "~5.6.2",
|
|
"typescript-eslint": "^8.18.2",
|
|
"vite": "^6.0.0"
|
|
}
|
|
}
|