forked from mizzoudbl/tbep-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.03 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
{
"name": "tbep-backend",
"version": "1.3.1",
"description": "",
"author": {
"name": "Bhupesh Dewangan",
"email": "bhupeshdewangan20@gmail.com",
"url": "https://github.com/mizzoudbl"
},
"private": true,
"license": "CC-BY-NC-4.0",
"scripts": {
"build": "nest build -b swc --type-check",
"format": "prettier --write \"src/**/*.ts\"",
"start": "nest start -b swc --type-check",
"start:dev": "nest start --watch -b swc",
"start:debug": "nest start --debug --watch -b swc --type-check",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky || true",
"commit": "git-cz"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.64",
"@ai-sdk/openai-compatible": "^1.0.26",
"@apollo/server": "^5.1.0",
"@as-integrations/express5": "^1.1.2",
"@clickhouse/client": "^1.12.1",
"@langfuse/otel": "^4.4.1",
"@langfuse/tracing": "^4.4.1",
"@nest-lab/throttler-storage-redis": "^1.1.0",
"@nestjs/common": "^11.1.8",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.8",
"@nestjs/graphql": "^13.2.0",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/throttler": "^6.4.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-node": "^0.208.0",
"@opentelemetry/sdk-trace-node": "^2.2.0",
"ai": "^5.0.89",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"dataloader": "^2.2.3",
"graphql": "^16.12.0",
"graphql-type-json": "^0.3.2",
"ioredis": "^5.8.2",
"neo4j-driver": "^6.0.1",
"nestjs-zod": "^5.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"zod": "4.1.12"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/cz-commitlint": "^20.1.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.9",
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.5",
"@types/node": "^24.10.0",
"commitizen": "^4.3.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@swc/core",
"unrs-resolver"
],
"overrides": {
"tmp@<=0.2.3": ">=0.2.4",
"validator@<13.15.20": ">=13.15.20"
}
},
"packageManager": "pnpm@10.20.0"
}