-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "freesoccer",
"version": "1.0.0",
"description": "Free API with results from national football competitions",
"main": "dist/index",
"scripts": {
"build": "tsc -p . && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "ts-node -r tsconfig-paths/register --transpile-only src/index.ts",
"scraping": "ts-node -r tsconfig-paths/register --transpile-only src/config/Commander.ts",
"test": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrelmlins/freesoccer.git"
},
"author": "André Lins",
"bugs": {
"url": "https://github.com/andrelmlins/freesoccer/issues"
},
"homepage": "https://www.apifreesoccer.com/",
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.10",
"commander": "^8.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"https": "^1.0.0",
"jest": "^27.0.6",
"loading-cli": "^1.1.0",
"md5": "^2.3.0",
"moment": "^2.29.1",
"mongoose": "^6.0.4",
"node-cron": "^3.0.0",
"puppeteer": "^6.0.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-auto-scroll": "^0.2.2",
"swagger-ui-express": "^4.1.6",
"tscpaths": "^0.0.9",
"typescript": "^4.3.4"
},
"devDependencies": {
"@types/cheerio": "^0.22.29",
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.12",
"@types/md5": "^2.3.0",
"@types/mongoose": "5.11.97",
"@types/node": "^15.12.5",
"@types/node-cron": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "3.1.4",
"prettier": "2.1.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0"
}
}