This repository was archived by the owner on May 31, 2023. It is now read-only.
generated from Borodutch/telegram-bot-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.45 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.45 KB
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
{
"name": "b_banner_bot",
"version": "1.0.0",
"description": "Telegram bot that bans users across all specified chats",
"main": "dist/app.js",
"repository": "https://github.com/backmeupplz/b_banner_bot",
"author": "backmeupplz <backmeupplz@gmail.com>",
"license": "MIT",
"scripts": {
"distribute": "yarn build && node dist/app.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node dist/app.js'",
"build": "tsc --skipLibCheck",
"test": "yarn jest --forceExit --runInBand",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-relative-import-paths": "^1.3.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"tsc-watch": "^5.0.3"
},
"dependencies": {
"dotenv": "^16.0.1",
"envalid": "^7.3.1",
"grammy": "^1.9.0",
"grammy-middlewares": "^1.0.11",
"module-alias": "^2.2.2",
"source-map-support": "^0.5.21",
"typescript": "^4.7.4"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "yarn@3.2.1"
}