generated from Borodutch/telegram-bot-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "video-download-bot",
"version": "1.0.0",
"description": "Telegram bot to download videos",
"main": "dist/app.js",
"repository": "https://github.com/Borodutch/VideoDownloadBot",
"author": "backmeupplz <[email protected]>",
"license": "MIT",
"scripts": {
"distribute": "node dist/app.js",
"develop": "tsc-watch --skipLibCheck --onSuccess \"node dist/app.js\"",
"build-ts": "tsc --skipLibCheck",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"dependencies": {
"@grammyjs/i18n": "^0.5.0",
"@grammyjs/menu": "^1.0.4",
"@grammyjs/runner": "^1.0.3",
"@typegoose/typegoose": "^9.3.1",
"envalid": "^7.2.2",
"fluent-ffmpeg": "^2.1.2",
"grammy": "^1.5.3",
"grammy-middlewares": "^1.0.11",
"lodash": "^4.17.21",
"mongoose": "^6.1.1",
"mongoose-findorcreate": "^3.0.0",
"random-token": "^0.0.8",
"rimraf": "^3.0.2",
"sharp": "^0.30.0",
"turbo-downloader": "^1.0.9",
"uuid": "^8.3.2",
"youtube-dl-exec": "^3.0.7"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.12",
"@types/rimraf": "^3.0.2",
"@types/sharp": "^0.29.5",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"dotenv": "^10.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-no-relative-import-paths": "^1.0.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"module-alias": "^2.2.2",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.3"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}