-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
30 lines (30 loc) · 969 Bytes
/
package.json
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
{
"name": "telegram-bot-vercel-boilerplate",
"version": "1.1.0",
"description": "Telegram Bot Vercel Boilerplate",
"main": "src/index.ts",
"author": "Mark Pavlov (https://github.com/sollidy)",
"homepage": "https://github.com/sollidy/telegram-bot-vercel-boilerplate",
"dependencies": {
"@vercel/node": "^3.2.24",
"dotenv-cli": "^7.4.2",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^22.8.6",
"@vercel/ncc": "^0.38.2",
"debug": "^4.3.7",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"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"
}
}