generated from Borodutch/telegram-bot-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1018 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
31
32
{
"name": "telegraf-template",
"version": "1.0.0",
"description": "Telegram bot template based on telegraf.js.org",
"main": "dist/app.js",
"repository": "https://github.com/backmeupplz/telegraf-template",
"author": "backmeupplz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"distribute": "yarn build-ts && node dist/app.js",
"develop": "concurrently -k -i -p \"[{name}]\" -n \"Node,TypeScript\" -c \"yellow.bold,cyan.bold\" \"yarn watch-js\" \"yarn watch-ts\"",
"build-ts": "tsc --skipLibCheck",
"watch-ts": "tsc -w --skipLibCheck",
"watch-js": "nodemon dist/app.js"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^2.0.1"
},
"dependencies": {
"@typegoose/typegoose": "^6.1.5",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.5.32",
"@types/node": "^12.12.12",
"dotenv": "^8.2.0",
"mongoose": "^5.7.12",
"telegraf": "^3.33.3",
"telegraf-i18n": "^6.6.0",
"typescript": "^3.7.2"
}
}