-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 773 Bytes
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
{
"name": "vlr-gg-api",
"version": "1.0.0",
"description": "REST API for vlr.gg Valorant esports data",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"valorant",
"esports",
"api",
"scraper"
],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/rate-limit": "^9.1.0",
"cheerio": "^1.0.0-rc.12",
"fastify": "^4.25.2",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/node": "^20.10.6",
"fast-check": "^3.15.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}