-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.55 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.55 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
{
"name": "game-services",
"version": "0.109.0",
"description": "",
"license": "MIT",
"author": "Talo Platform Ltd",
"main": "src/index.ts",
"scripts": {
"watch": "nodemon --watch src --ext ts,json --exec ts-node src/index.ts",
"build": "npx tsc -p tsconfig.build.json",
"build:sourcemaps": "npx tsc -p tsconfig.sourcemaps.json",
"seed": "DB_HOST=127.0.0.1 CLICKHOUSE_HOST=127.0.0.1 ts-node 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 && npm run 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.8.2",
"@koa/cors": "^5.0.0",
"@mikro-orm/core": "^6.6.7",
"@mikro-orm/migrations": "^6.6.7",
"@mikro-orm/mysql": "^6.6.7",
"@mikro-orm/reflection": "^6.6.7",
"@ngneat/falso": "^7.2.0",
"@opentelemetry/api": "^1.9.0",
"@sentry/node": "^9.29.0",
"archiver": "^7.0.1",
"axios": "^1.12.1",
"bcrypt": "^6.0.0",
"bullmq": "^5.40.2",
"bullmq-otel": "^1.0.1",
"date-fns": "^4.1.0",
"dinero.js": "^2.0.0",
"dotenv": "^16.0.0",
"handlebars": "^4.7.7",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.0",
"koa": "^3.1.2",
"koa-bodyparser": "^4.4.1",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.1",
"koa-helmet": "^7.0.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"koa-tree-router": "^0.13.1",
"lodash": "^4.17.23",
"mikro-orm-cache-adapter-redis": "^4.0.0",
"nodemailer": "^7.0.11",
"otplib": "^12.0.1",
"p-retry": "^7.1.1",
"qrcode": "^1.5.0",
"qs": "^6.14.2",
"rate-limiter-flexible": "^7.3.0",
"stripe": "^18.0.0",
"uuid": "^9.0.0",
"ws": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@mikro-orm/cli": "^6.6.7",
"@types/archiver": "^6.0.3",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.9",
"@types/koa": "^3.0.1",
"@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": "^4.14.182",
"@types/node": "24",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"@types/supertest": "^6.0.2",
"@types/unzipper": "^0.10.11",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^4.0.18",
"axios-mock-adapter": "^1.22.0",
"csv-parse": "^5.6.0",
"hefty": "^2.0.0",
"husky": "^9.0.11",
"lint-staged": ">=10",
"nodemon": "^3.1.11",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"oxlint-tsgolint": "^0.14.1",
"supertest": "^7.0.0",
"ts-node": "^10.7.0",
"typescript": "^5.9.3",
"unzipper": "^0.12.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"overrides": {
"koa-tree-router": {
"@types/koa": "$@types/koa"
}
},
"lint-staged": {
"*.{js,ts}": "npm run lint"
},
"engines": {
"node": ">=24.0.0"
},
"mikro-orm": {
"configPaths": [
"./src/config/mikro-orm.config.ts",
"./config/mikro-orm.config.js"
]
}
}