-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"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": {
"@bufbuild/protobuf": "^2.0.0",
"@grpc/grpc-js": "^1.11.3",
"@grpc/proto-loader": "^0.7.13",
"@nestjs/common": "^10.4.1",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.4.1",
"@nestjs/platform-express": "^10.4.1",
"@nestjs/swagger": "^7.4.0",
"@prisma/client": "5.8.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"nest-winston": "^1.9.7",
"rxjs": "^7.8.1",
"ts-proto": "^2.2.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@bufbuild/buf": "^1.41.0",
"@bufbuild/protoc-gen-es": "^2.0.0",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prisma": "5.8.1",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
}
}