-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.46 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
{
"name": "ai-moodler-backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"start": "node dist/main",
"start:prod": "node dist/main",
"start:worker": "node dist/worker/main.js",
"migration:run:prod": "node ./node_modules/typeorm/cli.js migration:run -d dist/database/data-source.js",
"migration:revert:prod": "node ./node_modules/typeorm/cli.js migration:revert -d dist/database/data-source.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.883.0",
"@aws-sdk/s3-request-presigner": "^3.883.0",
"@bull-board/api": "^6.12.0",
"@bull-board/express": "^6.12.0",
"@google/generative-ai": "^0.24.1",
"@nestjs/bull": "^11.0.3",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/jwt": "^11.0.0",
"@nestjs/mapped-types": "*",
"@nestjs/microservices": "^11.1.6",
"@nestjs/mongoose": "^11.0.3",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/platform-socket.io": "^11.1.6",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/throttler": "^6.4.0",
"@nestjs/typeorm": "^11.0.0",
"@nestjs/websockets": "^11.1.6",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.8",
"axios": "^1.11.0",
"bcrypt": "^6.0.0",
"bullmq": "^5.56.9",
"cookie-parser": "^1.4.7",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"flatted": "^3.3.3",
"form-data": "^4.0.4",
"ioredis": "^5.7.0",
"mongoose": "^8.17.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nest-winston": "^1.10.2",
"nestjs-spelunker": "^1.3.2",
"nodemailer": "^7.0.5",
"openai": "^5.11.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"qrcode": "^1.5.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"sharp": "^0.34.3",
"socket.io": "^4.8.1",
"typeorm": "^0.3.25",
"uuid": "^8.3.2",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^22.10.7",
"@types/nodemailer": "^6.4.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/socket.io": "^3.0.1",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^30.0.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.4.1",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.28.12",
"typedoc-plugin-markdown": "^4.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
}
}