forked from multiversuskoth/mvs-http-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.16 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": "mvs-http-server",
"scripts": {
"start": "node -r @swc-node/register ./src/index.ts",
"build": "tsc --project ./",
"start:prod": "node ./build/index.js",
"prettify": "prettier . --write",
"check-style": "prettier . --check && eslint",
"lint": "eslint --fix"
},
"dependencies": {
"@kishor82/jsonflat": "^0.1.0-beta.1",
"@typegoose/typegoose": "^12.12.0",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"express": "^4.21.2",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.11.0",
"mvs-dump": "^1.0.0",
"steam-appticket": "^2.0.1",
"ts-node": "^10.9.2",
"ws": "^8.18.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@swc-node/register": "^1.10.10",
"@tsconfig/node22": "^22.0.0",
"@types/dot-object": "^2.1.6",
"@types/express": "^5.0.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"type-fest": "^4.35.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}