-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "sofascore-api",
"version": "1.0.0",
"description": "This project documents APIs to access [sofascore](http://sofascore.com). Sofascore has a lot of data and in play statistics we will try to document here.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "nodemon node_modules/.bin/ts-node --ext \"ts,js,mjs,json\" src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apdmatos/sofascore-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/apdmatos/sofascore-api/issues"
},
"homepage": "https://github.com/apdmatos/sofascore-api#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/swagger-ui-express": "^4.1.2",
"nodemon": "^2.0.12",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}