-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.32 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
104
105
106
107
{
"name": "@nest-microservices/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"build:api-gateway": "nx build api-gateway",
"serve:api-gateway": "nx serve api-gateway",
"format": "prettier --write \"apps/**/*.ts\" \"libs/**/*.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}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./apps/ordering-app/test/jest-e2e.json"
},
"private": true,
"dependencies": {
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@nestjs/common": "^10.3.10",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.3.10",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.3.10",
"@nestjs/mongoose": "^10.0.10",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.3.10",
"@nestjs/swagger": "^7.4.0",
"@nestjs/throttler": "^6.0.0",
"@sentry/node": "^8.18.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"axios": "^1.7.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"fastify": "^4.28.1",
"fastify-reply-from": "^6.7.0",
"ioredis": "^5.4.1",
"jsonc-parser": "^3.3.1",
"mongoose": "^8.5.1",
"mongoose-user-history-plugin": "^0.5.48",
"nestjs-i18n": "^10.4.5",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"winston": "^3.13.1",
"winston-mongodb": "^5.1.1",
"winston-s3-transport": "^1.2.0"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/cypress": "19.4.2",
"@nx/eslint": "19.4.2",
"@nx/eslint-plugin": "19.4.2",
"@nx/jest": "19.4.2",
"@nx/js": "19.4.2",
"@nx/nest": "19.4.2",
"@nx/node": "19.4.2",
"@nx/vite": "19.4.2",
"@nx/vue": "19.4.2",
"@nx/web": "19.4.2",
"@nx/webpack": "19.4.2",
"@nx/workspace": "19.4.2",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/cookie-parser": "^1.4.7",
"@types/hpp": "^0.2.6",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "~20.14.11",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"cypress": "^13.13.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.13.4",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jsdom": "~22.1.0",
"nx": "19.4.2",
"prettier": "^2.6.2",
"sass": "1.62.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.4.2",
"vite": "^5.0.0",
"vitest": "^1.3.1",
"webpack-cli": "^5.1.4"
}
}