-
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) · 863 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 863 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": "matchmaking-and-game-session-state-with-redis",
"version": "0.2.0",
"main": "server/index.js",
"type": "module",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "bun run --watch .",
"format": "prettier . --write",
"test": "bun test",
"start": "bun .",
"docker": "docker compose --env-file /dev/null up -d --build"
},
"dependencies": {
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pino": "^10.3.1",
"pino-abstract-transport": "^3.0.0",
"pino-http": "^11.0.0",
"pino-pretty": "^13.1.3",
"redis": "^5.11.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/express": "^5.0.6",
"@types/supertest": "^7.2.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}