-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 963 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "telegram-dating-bot",
"version": "1.0.0",
"description": "A Telegram dating bot with profile matching",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"build": "npm run clean && tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@aws-sdk/s3-request-presigner": "^3.504.0",
"axios": "^1.7.9",
"chalk": "^5.4.1",
"dotenv": "^16.4.1",
"mongoose": "^8.1.1",
"telegraf": "^4.15.3"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}