init commit

This commit is contained in:
2025-09-12 21:25:54 +09:00
commit 17efb2fb53
37 changed files with 12637 additions and 0 deletions

41
package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "telegram-tinder-bot",
"version": "1.0.0",
"description": "A fully functional Telegram bot that mimics Tinder functionalities for user matching.",
"main": "dist/bot.js",
"scripts": {
"start": "node dist/bot.js",
"dev": "ts-node src/bot.ts",
"build": "tsc",
"test": "jest",
"db:init": "ts-node src/scripts/initDb.ts"
},
"dependencies": {
"@types/node-telegram-bot-api": "^0.64.11",
"axios": "^1.6.2",
"dotenv": "^16.6.1",
"node-telegram-bot-api": "^0.64.0",
"pg": "^8.11.3",
"sharp": "^0.32.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/pg": "^8.15.5",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"keywords": [
"telegram",
"bot",
"tinder",
"matching",
"dating"
],
"author": "Telegram Tinder Bot",
"license": "MIT"
}