61 lines
1.9 KiB
JSON
61 lines
1.9 KiB
JSON
{
|
|
"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",
|
|
"start:prod": "NODE_ENV=production node dist/bot.js",
|
|
"start:win:prod": "set NODE_ENV=production&& node dist/bot.js",
|
|
"dev": "ts-node src/bot.ts",
|
|
"build": "tsc && xcopy /E /I src\\locales dist\\locales",
|
|
"build:linux": "tsc && cp -R src/locales dist/",
|
|
"test": "jest",
|
|
"test:bot": "ts-node tests/test-bot.ts",
|
|
"db:init": "ts-node src/scripts/initDb.ts",
|
|
"init:db": "ts-node src/scripts/initDb.ts",
|
|
"migrate": "node-pg-migrate",
|
|
"migrate:up": "node-pg-migrate up",
|
|
"migrate:down": "node-pg-migrate down",
|
|
"migrate:create": "node-pg-migrate create",
|
|
"premium:set-all": "ts-node src/scripts/setPremiumForAll.ts",
|
|
"premium:direct": "ts-node src/scripts/setPremiumDirectConnect.ts",
|
|
"db:info": "ts-node src/scripts/getDatabaseInfo.ts",
|
|
"db:test-data": "ts-node src/scripts/createTestData.ts",
|
|
"enhance-notifications": "ts-node src/scripts/enhanceNotifications.ts",
|
|
"update": "bash ./bin/update.sh",
|
|
"update:win": ".\\bin\\update.bat",
|
|
"start:sh": "bash ./bin/start_bot.sh"
|
|
},
|
|
"dependencies": {
|
|
"@types/node-telegram-bot-api": "^0.64.11",
|
|
"axios": "^1.12.1",
|
|
"dotenv": "^16.6.1",
|
|
"i18next": "^25.5.2",
|
|
"node-pg-migrate": "^8.0.3",
|
|
"node-telegram-bot-api": "^0.64.0",
|
|
"pg": "^8.16.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"
|
|
}
|