-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 970 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 970 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
37
{
"name": "cs2d-serverlist",
"version": "2025.12.13",
"description": "Amateur Node.js project showing CS2D servers, player stats, maps, and leaderboard via CORS API.",
"main": "app.js",
"author": "Ernest Paśnik",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ernestpasnik/cs2d-serverlist.git"
},
"keywords": ["CS2D", "server list", "leaderboard", "Node.js", "API"],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.3.0",
"@fastify/static": "^8.3.0",
"@fastify/view": "^11.1.1",
"country-emoji": "^1.5.6",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"fastify": "^5.6.2",
"ioredis": "^5.8.2",
"json-with-bigint": "^3.4.4",
"node-ipinfo": "^4.1.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}