-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.96 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.96 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
{
"name": "dias",
"version": "1.0.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"generate:schema": "npx prisma generate --schema=./src/prisma/schema.prisma",
"generate:proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./ --ts_proto_opt=nestJs=true ./src/proto/dias.proto",
"build": "npx prisma generate --schema=./src/prisma/schema.prisma && nest build",
"start": "npx prisma generate --schema=./src/prisma/schema.prisma && nest start",
"start:dist": "node dist/",
"test:unit": "jest",
"test:e2e": ""
},
"dependencies": {
"@aws-sdk/client-ses": "^3.668.0",
"@bufbuild/protobuf": "^2.2.0",
"@grpc/grpc-js": "^1.12.2",
"@grpc/proto-loader": "^0.7.13",
"@jest/globals": "^29.7.0",
"@liaoliaots/nestjs-redis": "^9.0.5",
"@nestjs/common": "^10.4.4",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.4",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.4.4",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/swagger": "^7.4.2",
"@prisma/client": "^5.20.0",
"@types/bcrypt": "^5.0.2",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-local": "^1.0.38",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"ioredis": "^5.4.1",
"jest-mock-extended": "^3.0.7",
"nest-winston": "^1.10.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pm2": "^5.4.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"ts-proto": "^2.2.3",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.45.0",
"@bufbuild/protoc-gen-es": "^2.2.0",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.4",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@types/node": "20.14.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "29.7.0",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "29.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5.6.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}