generated from bot-base/telegram-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.94 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "telegram-bot-template",
"version": "0.1.0",
"description": "Telegram bot starter template",
"main": "dist/run.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"build": "npm run clean && tsc",
"dev": "tsc-watch --onSuccess \"node dist/run.js\"",
"start": "node dist/run.js",
"prepare": "husky install"
},
"author": "deptyped <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@grammyjs/hydrate": "1.2.1",
"@grammyjs/i18n": "1.0.1",
"@grammyjs/menu": "1.1.2",
"@grammyjs/parse-mode": "1.5.0",
"@grammyjs/ratelimiter": "1.1.6",
"@grammyjs/storage-redis": "2.0.0",
"@grammyjs/transformer-throttler": "1.2.1",
"@prisma/client": "4.6.1",
"dotenv": "16.0.3",
"envalid": "7.3.1",
"fastify": "4.10.0",
"grammy": "1.12.0",
"grammy-guard": "0.3.1",
"ioredis": "5.2.4",
"iso-639-1": "2.1.15",
"lodash": "4.17.21",
"module-alias": "2.2.2",
"node-fetch": "3.3.0",
"pino": "8.7.0",
"pino-pretty": "9.1.1",
"prom-client": "14.1.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/ioredis": "4.28.10",
"@types/lodash": "4.14.189",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prisma": "4.6.1",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"type-fest": "3.2.0",
"typescript": "4.9.3"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"_moduleAliases": {
"~": "dist"
}
}