-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
36
37
38
39
40
41
42
{
"name": "self-hostable-backend",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"repository": "https://github.com/EuphoriaTheme/self-hostable-backend",
"author": "Rep Graphics <repgraphics@euphoriadevelopment.uk>",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^9.1.3",
"arma-rcon": "^1.0.2",
"axios": "^1.10.0",
"dotenv": "^17.3.1",
"fastify": "^5.6.1",
"gamedig": "^5.3.1",
"js-yaml": "^4.1.0",
"rcon-client": "^4.2.5",
"rcon-srcds": "^2.1.0",
"telnet-client": "^2.2.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3"
},
"overrides": {
"fast-xml-parser": ">=5.5.6",
"validator": ">=13.15.20"
},
"scripts": {
"start": "node index.js",
"update:games": "node ./scripts/updateGamesYml.js",
"sync:translations": "node ./scripts/syncTranslations.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}