-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "smile-tube",
"version": "1.0.0",
"description": "Get a full list of your favorite youtube channel and find a random video",
"main": "src/modules/cli/app.ts",
"scripts": {
"start": "ts-node src/modules/cli/app.ts",
"start:stopgame": "npm start -- stopgame",
"start:bot": "ts-node src/modules/bot/app.ts",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"test": "ts-jest"
},
"author": "Dmytro Vakulenko",
"license": "MIT",
"dependencies": {
"@edjopato/telegraf-i18n": "^0.2.2",
"@types/cli-progress": "^3.9.1",
"@types/deep-equal": "^1.0.1",
"axios": "^0.21.1",
"cli-progress": "^3.9.0",
"deep-equal": "^2.0.5",
"dotenv": "^8.2.0",
"inversify": "^5.0.5",
"moment": "^2.29.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7",
"telegraf": "^4.3.0",
"telegraf-menu": "^1.6.0",
"telegraf-session-local": "^2.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.25",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"ts-jest": "^26.5.5"
},
"keywords": [
"youtube",
"videos",
"channel",
"youtube videos",
"youtube channel",
"youtube api"
]
}