-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.56 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.56 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
{
"name": "clean-fastify",
"module": "index.ts",
"type": "module",
"private": true,
"author": {
"name": "Aolus Software"
},
"scripts": {
"dev": "concurrently --kill-others-on-fail --prefix-colors \"bgBlue.bold,bgMagenta.bold\" --names \"API,WORKER\" \"bun run dev:server\" \"bun run dev:worker\"",
"dev:server": "bun run --hot --watch ./src/serve.ts",
"dev:worker": "bun run --hot --watch ./src/bull/index.ts",
"build": "bun run typecheck && bun run build:server && bun run build:worker",
"build:server": "bun build --target bun --minify-whitespace --minify-syntax --outfile ./dist/serve.js src/serve.ts",
"build:worker": "bun build --target bun --minify-whitespace --minify-syntax --outfile ./dist/worker.js src/bull/index.ts",
"build:binary": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile server src/serve.ts",
"build:binary:worker": "bun build --compile --minify-whitespace --minify-syntax --target bun --outfile worker src/bull/index.ts",
"start": "concurrently --kill-others-on-fail --prefix-colors \"bgGreen.bold,bgMagenta.bold\" --names \"API,WORKER\" \"bun run start:server\" \"bun run start:worker\"",
"start:server": "bun ./dist/serve.js",
"start:worker": "bun ./dist/worker.js",
"lint": "bun run eslint . --ext .ts,.js",
"lint:fix": "bun run eslint . --ext .ts,.js --fix",
"format": "bun run prettier --write .",
"typecheck": "bun run tsc --noEmit",
"prepare": "husky install",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit introspect",
"db:studio": "drizzle-kit studio",
"db:drop": "drizzle-kit drop",
"db:seed": "bun run src/libs/database/seed/index.ts",
"db:clickhouse:migrate": "bun run src/libs/database/clickhouse/scripts/migrate.ts migrate",
"db:clickhouse:status": "bun run src/libs/database/clickhouse/scripts/migrate.ts status",
"i18n:keys": "bun run src/libs/i18n/scripts/generate-keys.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcryptjs": "^3.0.0",
"@types/bun": "^1.3.14",
"@types/crypto-js": "^4.2.2",
"@types/node": "^25.8.0",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.10",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"prettier": "^3.8.3",
"tsx": "^4.22.0",
"typescript-eslint": "^8.59.3"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@clickhouse/client": "^1.18.5",
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/redis": "^7.2.0",
"@fastify/swagger": "^9.7.0",
"@scalar/fastify-api-reference": "^1.57.2",
"ajv": "^8.20.0",
"bcryptjs": "^3.0.3",
"bullmq": "^5.76.8",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.20",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"envalid": "^8.1.1",
"fastify": "^5.8.5",
"fastify-plugin": "^5.1.0",
"fastify-type-provider-zod": "^6.1.0",
"ioredis": "^5.10.1",
"nodemailer": "^8.0.7",
"pg": "^8.20.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0",
"zod": "^4.4.3"
},
"lint-staged": {
"*.ts": [
"bun run lint:fix",
"bun run format"
]
}
}