-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
43
{
"name": "gamerbot-rest-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsc --watch & NODE_ENV=development nodemon dist",
"build": "npx tsc",
"start": "node dist/index.js",
"prettier": "npx prettier . --write"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"canvas": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.0",
"express-rate-limit": "^8.2.1",
"minecraft-api-wrapper": "^1.8.2",
"mongoose": "^9.1.2",
"sanitize-filename": "^1.6.3",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0"
}
}