-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 908 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 908 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
{
"name": "tg-task-bot",
"version": "1.0.0",
"description": "Telegram Task Bot",
"main": "src/index.ts",
"author": "Maxim Belikov",
"scripts": {
"dev": "DEBUG=bot* dotenv -- nodemon -e ts -x ts-node src/index.ts",
"devWindows": "@powershell -Command $env:DEBUG='bot*';dotenv -- -- nodemon -e ts -x ts-node src/index.ts",
"build": "ncc build src/index.ts -o public -m",
"prettier": "prettier --write src/**/*.ts",
"lint": "tsc --noemit"
},
"dependencies": {
"@vercel/node": "^5.0.2",
"dotenv-cli": "^8.0.0",
"nekosia.js": "^0.2.0",
"pg": "^8.13.1",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.12.0",
"@types/pg": "^8.11.11",
"@vercel/ncc": "^0.38.3",
"debug": "^4.4.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}