-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.98 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.98 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
{
"name": "@square-me/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "nx run-many -t serve -p auth transaction wallet integration notification",
"build": "nx run-many -t build -p auth transaction wallet integration notification",
"migration:run": "nx run-many -t migration:run -p auth transaction wallet",
"upgrade:nestjs": "npx npm-check-updates -u -f \"/nestjs*/\" ",
"typeorm": "typeorm-ts-node-commonjs",
"test:currency:conversion": "nx fetch-exchange-rate integration --args=\"--command=test-exchange-service\"",
"test:currency:api": "nx fetch-exchange-rate integration --args=\"--command=test-exchange-rate-api\""
},
"private": true,
"dependencies": {
"@grpc/grpc-js": "^1.13.3",
"@grpc/proto-loader": "^0.7.15",
"@nestjs-modules/mailer": "^2.0.2",
"@nestjs/axios": "^4.0.0",
"@nestjs/bullmq": "^11.0.2",
"@nestjs/common": "^11.1.0",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.0",
"@nestjs/microservices": "^11.1.0",
"@nestjs/platform-express": "^11.1.0",
"@nestjs/platform-ws": "^11.1.0",
"@nestjs/schedule": "^6.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.8",
"argon2": "^0.43.0",
"axios": "^1.9.0",
"bullmq": "^5.52.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cookie-parser": "^1.4.7",
"decimal.js": "^10.5.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"ioredis": "^5.6.1",
"nest-commander": "^3.17.0",
"nestjs-pino": "^4.4.0",
"nestjs-typeorm-paginate": "^4.1.0",
"nodemailer": "^7.0.3",
"pg": "^8.15.6",
"pino": "^9.6.0",
"pino-http": "^10.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ts-proto": "^2.7.0",
"tslib": "^2.3.0",
"typeorm": "^0.3.23",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nestjs/schematics": "^11.0.5",
"@nestjs/testing": "^11.1.0",
"@nx/eslint": "21.0.0",
"@nx/eslint-plugin": "21.0.0",
"@nx/jest": "21.0.0",
"@nx/js": "21.0.0",
"@nx/nest": "21.0.0",
"@nx/node": "21.0.0",
"@nx/web": "21.0.0",
"@nx/webpack": "21.0.0",
"@nx/workspace": "21.0.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.1",
"@types/hpp": "^0.2.6",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"env-cmd": "^10.1.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lint-staged": "^15.5.2",
"nx": "21.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.19.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}