forked from sollidy/telegram-bot-vercel-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 939 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
{
"name": "telegram-bot-vercel-boilerplate",
"version": "1.1.0",
"description": "Telegram Bot Vercel Boilerplate",
"main": "src/index.ts",
"author": "Mark Pavlov (https://github.com/m7mark)",
"homepage": "https://github.com/m7mark/telegram-bot-vercel-boilerplate",
"dependencies": {
"@vercel/node": "^2.9.2",
"dotenv-cli": "^7.0.0",
"telegraf": "^4.11.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.13.0",
"@vercel/ncc": "^0.36.1",
"debug": "^4.3.4",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"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'"
}
}