-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.58 KB
/
package.json
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
{
"name": "@ladesa-ro/api.service",
"version": "1.0.0-next.34",
"private": true,
"files": ["generated/**/*", "src/**/*", "tsconfig*.json", "nest-cli.json"],
"scripts": {
"build": "bun run build:openapi-json",
"build:openapi-json": "bun run --silent codegen-openapi --apiPrefix=/ --outFile=./generated/openapi.v3.json",
"start:dev": "bun run --watch src/main.ts",
"start:debug": "bun run --watch --inspect-wait src/main.ts",
"start:prod": "bun run src/main.ts",
"codegen-openapi": "bun run src/scripts/codegen-openapi/main.ts",
"typeorm": "bun run ./node_modules/typeorm/cli.js",
"typeorm:ds-migration": "bun run ./node_modules/typeorm/cli.js -d src/infrastructure/integrations/database/typeorm/data-sources/migration.data-source.ts",
"typeorm:entity": "bun run typeorm entity:create",
"typeorm:generate": "bun run typeorm migration:generate",
"typeorm:create": "bun run typeorm migration:create",
"migration:run": "bun run typeorm:ds-migration migration:run",
"migration:revert": "bun run typeorm:ds-migration migration:revert",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
"check:static": "tsc --noEmit"
},
"dependencies": {
"@apollo/server": "^4.11.3",
"@apollo/utils.keyvaluecache": "^3.1.0",
"@fastify/merge-json-schemas": "^0.2.1",
"@keycloak/keycloak-admin-client": "^25.0.6",
"@ladesa-ro/especificacao": "^3.4.1",
"@nestjs/apollo": "^13.0.3",
"@nestjs/common": "^11.0.10",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^11.0.10",
"@nestjs/event-emitter": "^3.0.0",
"@nestjs/graphql": "^13.0.3",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.10",
"@nestjs/schedule": "^5.0.1",
"@nestjs/swagger": "^11.0.3",
"@nestjs/throttler": "^6.4.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"amqplib": "^0.10.5",
"change-case": "^5.4.4",
"compression": "^1.8.0",
"date-fns": "^4.1.0",
"defu": "^6.1.4",
"fs-jetpack": "^5.1.0",
"graphql": "^16.10.0",
"graphql-list-fields": "^2.0.4",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"lodash": "^4.17.21",
"lru-cache": "^11.0.2",
"nestjs-paginate": "^11.0.0",
"openid-client": "^6.2.0",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"pg": "^8.13.3",
"rascal": "^20.1.1",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"sharp": "^0.33.5",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typeorm": "^0.3.20",
"uuid": "^11.0.5",
"valibot": "0.42.1"
},
"devDependencies": {
"@nestjs/cli": "^11.0.3",
"@nestjs/schematics": "^11.0.1",
"@nestjs/testing": "^11.0.10",
"@types/amqplib": "^0.10.6",
"@types/bun": "^1.2.2",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.0",
"@types/graphql-list-fields": "^2.0.7",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.15",
"@types/multer": "^1.4.12",
"@types/passport-http-bearer": "^1.0.41",
"@types/rascal": "^10.2.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.0.5",
"ast-types": "^0.16.1",
"magicast": "^0.3.5",
"pathe": "^2.0.3",
"recast": "^0.23.9",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"type-fest": "^4.35.0",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
}
}