-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.73 KB
/
package.json
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
{
"name": "game-services",
"version": "0.49.1",
"description": "",
"main": "src/index.ts",
"scripts": {
"watch": "tsx watch src/index.ts",
"build": "npx tsc -p tsconfig.build.json",
"dc": "docker compose -f docker-compose.yml -f docker-compose.dev.yml",
"seed": "DB_HOST=127.0.0.1 CLICKHOUSE_HOST=127.0.0.1 tsx tests/seed.ts",
"test": "./tests/run-tests.sh",
"up": "npm run dc -- up --build -d",
"down": "npm run dc -- down",
"restart": "npm run dc -- restart backend && npm run logs",
"logs": "npm run dc -- 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",
"service:create": "hygen service new",
"prepare": "husky || true",
"lint": "eslint src/**/*.ts tests/**/*.ts"
},
"author": "Sleepy Studios",
"license": "MIT",
"devDependencies": {
"@mikro-orm/cli": "^6.4.0",
"@stylistic/eslint-plugin": "^2.2.2",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-logger": "^3.1.2",
"@types/lodash": "^4.14.182",
"@types/node": "20",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-v8": "^1.5.2",
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.26.0",
"hefty": "^2.0.0",
"husky": "^9.0.11",
"hygen": "^6.2.11",
"lint-staged": ">=10",
"supertest": "^7.0.0",
"ts-node": "^10.7.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.2"
},
"dependencies": {
"@clickhouse/client": "^1.4.1",
"@dinero.js/currencies": "^2.0.0-alpha.14",
"@koa/cors": "^5.0.0",
"@mikro-orm/core": "^6.4.0",
"@mikro-orm/migrations": "^6.4.0",
"@mikro-orm/mysql": "^6.4.0",
"@mikro-orm/reflection": "^6.4.0",
"@ngneat/falso": "^7.2.0",
"@sendgrid/mail": "^8.1.3",
"@sentry/node": "^7.47.0",
"@sentry/utils": "^7.47.0",
"adm-zip": "^0.5.6",
"axios": "^1.6.8",
"bcrypt": "^5.1.0",
"bullmq": "^3.2.0",
"date-fns": "^2.28.0",
"dinero.js": "^2.0.0-alpha.14",
"dotenv": "^16.0.0",
"handlebars": "^4.7.7",
"ioredis": "^5.2.4",
"jsonwebtoken": "^9.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-clay": "^6.6.1",
"koa-helmet": "^7.0.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"lodash": "^4.17.21",
"otplib": "^12.0.1",
"qrcode": "^1.5.0",
"qs": "^6.11.0",
"stripe": "^12.0.0",
"uuid": "^9.0.0"
},
"mikro-orm": {
"configPaths": [
"./src/config/mikro-orm.config.ts",
"./config/mikro-orm.config.js"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
}
}