-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 3.84 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "game-services",
"version": "1.1.0",
"description": "",
"license": "MIT",
"author": "Talo Platform Ltd",
"type": "module",
"main": "src/index.ts",
"scripts": {
"watch": "tsx watch --include src src/index.ts",
"build": "tsc -p tsconfig.build.json",
"build:sourcemaps": "tsc -p tsconfig.sourcemaps.json",
"seed": "DB_HOST=127.0.0.1 CLICKHOUSE_HOST=127.0.0.1 tsx tests/seed.ts",
"test": "TZ=UTC ./tests/run-tests.sh",
"up": "docker compose up --build -d",
"down": "docker compose down",
"restart": "docker compose restart backend && pnpm logs",
"logs": "docker compose logs backend --follow",
"migration:create": "DB_HOST=127.0.0.1 mikro-orm migration:create",
"migration:up": "DB_HOST=127.0.0.1 mikro-orm migration:up",
"prepare": "husky || true",
"stripe:webhooks": "stripe listen --forward-to localhost:3000/public/webhooks/subscriptions",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt"
},
"dependencies": {
"@clickhouse/client": "^1.15.0",
"@hyperdx/node-opentelemetry": "^0.11.0",
"@koa/bodyparser": "^6.1.0",
"@koa/cors": "^5.0.0",
"@mikro-orm/core": "^7.1.13",
"@mikro-orm/decorators": "^7.1.13",
"@mikro-orm/migrations": "^7.1.13",
"@mikro-orm/mysql": "^7.1.13",
"@mikro-orm/reflection": "^7.1.13",
"@ngneat/falso": "^7.2.0",
"@opentelemetry/api": "^1.9.1",
"@otplib/preset-default": "^12.0.1",
"@sentry/node": "^10.57.0",
"archiver": "^8.0.0",
"axios": "^1.18.1",
"bcrypt": "^6.0.0",
"bullmq": "^5.40.2",
"bullmq-otel": "^1.0.1",
"date-fns": "^4.1.0",
"dinero.js": "^2.0.2",
"dotenv": "^16.0.0",
"handlebars": "^4.7.9",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.0",
"koa": "^3.2.1",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.1",
"koa-helmet": "^9.0.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"koa-tree-router": "^0.13.1",
"lodash-es": "^4.18.1",
"mikro-orm-cache-adapter-redis": "^4.0.0",
"nodemailer": "^9.0.1",
"obscenity": "^0.4.6",
"otplib": "^12.0.1",
"p-retry": "^7.1.1",
"qrcode": "^1.5.0",
"qs": "^6.14.2",
"rate-limiter-flexible": "^7.3.0",
"redlock-universal": "^0.8.4",
"s3mini": "^0.9.2",
"sqids": "^0.3.0",
"stripe": "18.0.0",
"uuid": "^14.0.0",
"ws": "^8.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@mikro-orm/cli": "^7.1.13",
"@types/archiver": "^8.0.0",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/koa": "^3.0.3",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-compress": "^4.0.7",
"@types/koa-logger": "^3.1.2",
"@types/koa__cors": "^5.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "24",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"@types/qs": "^6.9.18",
"@types/supertest": "^6.0.2",
"@types/unzipper": "^0.10.11",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.1.5",
"axios-mock-adapter": "^1.22.0",
"csv-parse": "^5.6.0",
"hefty": "^2.0.0",
"husky": "^9.0.11",
"lint-staged": ">=10",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"supertest": "^7.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unzipper": "^0.12.3",
"vite": "^7.3.1",
"vitest": "^4.1.5"
},
"overrides": {
"koa-tree-router": {
"@types/koa": "$@types/koa"
}
},
"lint-staged": {
"*.{js,ts}": "pnpm lint"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.0.0",
"onFail": "error"
}
},
"engines": {
"node": ">=24.0.0"
},
"mikro-orm": {
"configPaths": [
"./src/config/mikro-orm.config.ts",
"./config/mikro-orm.config.js"
]
}
}