forked from david-ziegler/TelegramEventBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 KB
/
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
33
34
35
36
{
"name": "create-events-bot",
"version": "1.3.5",
"description": "Create events in Telegram groups",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start": "yarn install && yarn lint && ts-node index.ts",
"watch": "yarn install && yarn lint && ts-node-dev index.ts",
"deploy": "./scripts/deploy.sh"
},
"author": "David Ziegler",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-telegram-bot-api": "^0.61.0",
"node-telegram-keyboard-wrapper": "^3.0.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.37",
"@types/node-telegram-bot-api": "^0.61.0",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": ">=4.2.3 <4.5.0"
}
}