-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.04 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
71
72
73
74
75
{
"name": "nfl-telegram-bot",
"version": "3.2.2",
"description": "A Telegram bot that provides the latest news about the NFL",
"repository": "github:jpmoura/nfl-news-for-telegram",
"main": "src/index.ts",
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"prestart": "yarn build",
"start": "node ./dist/index.js",
"prebuild": "npx rimraf dist",
"build": "npx tsc --project ./tsconfig.build.json",
"test": "jest",
"test:cov": "jest --coverage",
"test:ci": "yarn test:cov --maxWorkers=2",
"lint": "npx eslint --ext .ts src/ tests/",
"build:docker": "docker build . -t telegram-nfl-fantasy-bot:3.2.2"
},
"keywords": [
"NFL",
"telegram",
"bot",
"news",
"fantasy"
],
"author": "João Pedro Santos de Moura <jmoura.joaopedro@gmail.com> (https://github.com/jpmoura)",
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.2",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^6.1.0",
"inversify": "^6.0.1",
"node-json-db": "^2.1.3",
"node-schedule": "^1.3.0",
"reflect-metadata": "^0.1.13",
"telegraf": "^3.25.0",
"tslog": "^3.3.1",
"twit": "^2.2.11"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/faker": "^5.5.9",
"@types/inversify": "^2.0.33",
"@types/jest": "^27.0.3",
"@types/node-schedule": "^1.3.1",
"@types/twit": "^2.2.28",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-sonarjs": "^0.11.0",
"faker": "^5.5.3",
"jest": "^27.4.7",
"jest-mock-extended": "^2.0.4",
"jest-sonar": "^0.2.12",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}