-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 951 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 951 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": "trinitycore-docker",
"version": "1.0.0",
"description": "TrinityCore Docker project with Node.js",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint \"src/**/*.ts\"",
"test": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^2.1.5"
},
"dependencies": {
"@types/express": "^5.0.1",
"@types/mustache": "^4.2.5",
"@types/socket.io": "^3.0.1",
"axios": "^1.8.4",
"express": "^5.1.0",
"mysql2": "^3.14.0",
"socket.io": "^4.8.1"
}
}