-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.83 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
{
"name": "@gigachad-grc/audit",
"version": "1.0.0",
"description": "Audit module for internal and external compliance audits",
"main": "dist/main.js",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:ci": "jest --ci --runInBand",
"prisma:generate": "prisma generate --schema=../shared/prisma/schema.prisma",
"prisma:migrate": "prisma migrate dev --schema=../shared/prisma/schema.prisma",
"prisma:push": "prisma db push --schema=../shared/prisma/schema.prisma",
"postinstall": "prisma generate --schema=../shared/prisma/schema.prisma"
},
"dependencies": {
"@gigachad-grc/shared": "file:../shared",
"@nestjs/axios": "^4.0.0",
"@nestjs/common": "^11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/platform-express": "^11.1.19",
"@nestjs/swagger": "^11.3.2",
"@nestjs/throttler": "^6.4.0",
"@prisma/client": "^5.22.0",
"axios": "^1.15.1",
"bcrypt": "^6.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"helmet": "^7.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"uuid": "^14.0.0"
},
"devDependencies": {
"@nestjs/cli": "^11.0.19",
"@nestjs/schematics": "^11.0.10",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/multer": "^2.1.0",
"@types/node": "^20.19.42",
"@types/uuid": "^10.0.0",
"prisma": "^5.22.0",
"typescript": "^5.3.3"
},
"overrides": {
"fast-xml-parser": ">=5.5.7",
"path-to-regexp": ">=8.4.0",
"picomatch": ">=2.3.2",
"brace-expansion": ">=5.0.5",
"lodash": ">=4.18.0",
"uuid": "$uuid"
}
}