-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
37
38
39
40
41
42
{
"name": "serverless-telegram-bot",
"version": "1.0.0",
"description": "Modern serverless Telegram bot template using Grammy and TypeScript",
"main": "bot.ts",
"scripts": {
"start": "nodemon --exec ts-node bot.ts development -w .",
"deploy": "sls deploy",
"setHook": "ts-node ./hooks/setWebhook",
"delHook": "ts-node ./hooks/deleteWebhook"
},
"author": "duckyb",
"license": "MIT",
"dependencies": {
"@grammyjs/i18n": "^1.0.2",
"@grammyjs/storage-free": "^2.4.2",
"grammy": "^1.21.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.9",
"prettier": "^3.2.5",
"serverless": "^3.38.0",
"serverless-esbuild": "^1.52.1",
"typescript": "^5.3.3"
},
"nodemonConfig": {
"watch": [
"."
],
"ext": "ts, json, ftl",
"exec": "ts-node bot.ts"
}
}