-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 6.43 KB
/
package.json
File metadata and controls
166 lines (166 loc) · 6.43 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "teachLink_backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\" --max-warnings 0",
"lint:typed": "eslint \"{src,apps,libs,test}/**/*.ts\" --parser-options=project:tsconfig.json --max-warnings 0",
"typecheck": "tsc --project tsconfig.build.json --noEmit",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "jest --config jest.config.js --coverage --forceExit --runInBand && node ./test/utils/check-coverage-summary.js",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --forceExit --runInBand",
"test:e2e:stability": "node test/utils/e2e-test-runner.js --runs 5",
"test:e2e:stability:quick": "node test/utils/e2e-test-runner.js --runs 3",
"test:e2e:stability:auth": "node test/utils/e2e-test-runner.js --pattern \"auth.e2e-spec.ts\" --runs 5",
"test:e2e:flaky": "node test/utils/e2e-test-runner.js --runs 10",
"test:ml-models": "jest src/ml-models --maxWorkers=1 --max-old-space-size=2048",
"test:ml-models-basic": "jest src/ml-models/ml-models.service.basic.spec.ts --maxWorkers=1 --max-old-space-size=2048",
"test:optimized": "node --max-old-space-size=2048 node_modules/.bin/jest --maxWorkers=1 --config jest.config.js",
"migrate:run": "curl -s -X POST http://localhost:3000/migrations/run | npx json",
"migrate:status": "curl -s http://localhost:3000/migrations | npx json",
"migrate:rollback": "curl -s -X POST http://localhost:3000/migrations/rollback | npx json",
"migrate:rollback:count": "curl -s -X POST http://localhost:3000/migrations/rollback/${COUNT:-1} | npx json",
"migrate:rollback:to": "curl -s -X POST http://localhost:3000/migrations/rollback/to/${MIGRATION_NAME} | npx json",
"migrate:reset": "curl -s -X DELETE http://localhost:3000/migrations/reset | npx json"
},
"dependencies": {
"@apollo/server": "^4.13.0",
"@aws-sdk/client-cloudfront": "^3.975.0",
"@aws-sdk/client-kms": "^3.978.0",
"@aws-sdk/client-s3": "^3.975.0",
"@aws-sdk/client-secrets-manager": "^3.978.0",
"@elastic/elasticsearch": "^8.19.1",
"@huggingface/inference": "^4.13.12",
"@nestjs-modules/ioredis": "^2.0.2",
"@nestjs/apollo": "^12.2.2",
"@nestjs/axios": "^4.0.1",
"@nestjs/bull": "^11.0.2",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^10.4.22",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^10.4.22",
"@nestjs/elasticsearch": "^11.1.0",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/graphql": "^12.2.2",
"@nestjs/jwt": "^11.0.0",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^10.4.18",
"@nestjs/platform-socket.io": "^10.4.22",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/terminus": "^11.1.1",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"@nestjs/websockets": "^10.2.6",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-prometheus": "^0.203.0",
"@opentelemetry/instrumentation": "^0.203.0",
"@opentelemetry/sdk-node": "^0.203.0",
"@types/csurf": "^1.11.5",
"@types/express-session": "^1.18.2",
"@types/handlebars": "^4.0.40",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^7.0.5",
"@types/stripe": "^8.0.416",
"@xenova/transformers": "^2.17.2",
"axios": "^1.13.5",
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.2",
"bull": "^4.16.5",
"cache-manager": "^7.2.8",
"cache-manager-ioredis-yet": "^2.1.2",
"cache-manager-redis-store": "^3.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"connect-redis": "^9.0.0",
"csurf": "^1.11.0",
"dataloader": "^2.2.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"fast-xml-parser": "^5.2.5",
"fluent-ffmpeg": "^2.1.3",
"graphql": "^16.12.0",
"graphql-subscriptions": "^3.0.0",
"handlebars": "^4.7.8",
"helmet": "^8.0.0",
"ioredis": "^5.9.3",
"joi": "^17.13.3",
"multer": "^2.0.1",
"nodemailer": "^7.0.12",
"opossum": "^9.0.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pdf-parse": "^1.1.1",
"pg": "^8.17.2",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sharp": "^0.34.3",
"socket.io": "^4.8.1",
"stripe": "^18.3.0",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.28",
"uuid": "^14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.7",
"@types/bcryptjs": "^2.4.6",
"@types/bull": "^3.15.9",
"@types/connect": "^3.4.38",
"@types/express": "^5.0.6",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime": "^3.0.4",
"@types/node": "^20.19.4",
"@types/passport-jwt": "^4.0.1",
"@types/sharp": "^0.31.1",
"@types/socket.io": "^3.0.1",
"@types/stack-utils": "^2.0.3",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.0",
"jest": "^29.5.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
}
}