-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.43 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.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
{
"name": "vrt-backend",
"version": "1.1.0",
"description": "",
"author": "",
"private": true,
"license": "Apache-2.0",
"scripts": {
"prebuild": "rimraf dist",
"postinstall": "prisma generate",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"prisma/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"prisma/**/*.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,prisma}/**/*.ts\"",
"test": "jest --projects src",
"test:watch": "jest --projects src --watch",
"test:cov": "jest --projects src --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --projects src --runInBand",
"test:e2e": "jest --projects test",
"test:acceptance": "jest --projects test_acceptance",
"test:ldap": "jest --projects test_ldap"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/s3-request-presigner": "^3.922.0",
"@google/genai": "^1.34.0",
"@nestjs/cache-manager": "^3.0.1",
"@nestjs/common": "^11.1.8",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.8",
"@nestjs/jwt": "^11.0.1",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.8",
"@nestjs/platform-socket.io": "^11.1.8",
"@nestjs/schedule": "^6.0.1",
"@nestjs/swagger": "^11.2.1",
"@nestjs/terminus": "^11.0.0",
"@nestjs/websockets": "^11.1.8",
"@prisma/client": "^6.18.0",
"ajv": "^8.17.1",
"bcryptjs": "^2.4.3",
"cache-manager": "^7.2.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"fs-extra": "^11.3.2",
"ldapts": "^7.1.0",
"looks-same": "^9.0.0",
"odiff-bin": "^2.6.1",
"ollama": "^0.6.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.16.3",
"pg-hstore": "^2.3.4",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.2",
"swagger-ui-express": "^4.6.3",
"uuid-apikey": "^1.5.3",
"zod": "^4.2.1",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@darraghor/eslint-plugin-nestjs-typed": "^6.9.3",
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.8",
"@types/bcryptjs": "^2.4.4",
"@types/cache-manager": "^3.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.17.20",
"@types/multer": "^1.4.7",
"@types/node": "^20.14.10",
"@types/passport-jwt": "^3.0.9",
"@types/passport-local": "^1.0.38",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"axios": "^1.13.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^29.6.4",
"jest-mock-extended": "^4.0.0",
"prettier": "^3.6.2",
"prisma": "^6.18.0",
"supertest": "^6.3.3",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}