-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·107 lines (107 loc) · 3.06 KB
/
package.json
File metadata and controls
executable file
·107 lines (107 loc) · 3.06 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
102
103
104
105
106
107
{
"name": "@rumsan/source",
"version": "0.0.0",
"description": "Rumsan libraries and common utilities",
"author": "rumsan.com",
"license": "AGPL-3.0",
"licenses": [
{
"type": "AGPL-3.0",
"url": "https://opensource.org/licenses/AGPL-3.0"
},
{
"type": "Commercial License",
"url": "https://www.rumsan.com"
}
],
"scripts": {
"format": "prettier --write \"libs/**/*.ts\" \"apps/**/*.ts\"",
"seed": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' prisma/seed.ts",
"play": "ts-node --compiler-options '{\"module\":\"CommonJS\"}' play/user.ts"
},
"private": true,
"dependencies": {
"@casl/ability": "^6.7.1",
"@nestjs/common": "^10.4.4",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.4",
"@nestjs/event-emitter": "^2.0.4",
"@nestjs/jwt": "^10.2.0",
"@nestjs/microservices": "^10.4.4",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/platform-fastify": "^10.4.4",
"@nestjs/swagger": "^7.4.2",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.20.0",
"@rumsan/communication": "^0.0.24",
"@tanstack/react-query": "5.59.0",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.4",
"axios": "^1.7.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"handlebars": "^4.7.8",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"nest-winston": "^1.9.7",
"nodemailer": "^6.9.15",
"passport-jwt": "^4.0.1",
"pg": "^8.13.0",
"pg-listen": "^1.7.0",
"react": "^18.3.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"viem": "^2.21.16",
"winston": "^3.14.2",
"zlib": "^1.0.5",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.4",
"@nx/esbuild": "19.8.3",
"@nx/eslint": "19.8.3",
"@nx/eslint-plugin": "19.8.3",
"@nx/jest": "19.8.3",
"@nx/js": "19.8.3",
"@nx/nest": "19.8.3",
"@nx/node": "19.8.3",
"@nx/webpack": "19.8.3",
"@nx/workspace": "19.8.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@svgr/webpack": "^8.1.0",
"@swc-node/register": "~1.10.9",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "~1.7.26",
"@swc/helpers": "~0.5.13",
"@swc/jest": "0.2.36",
"@types/amqplib": "^0.10.5",
"@types/jest": "^29.5.13",
"@types/node": "22.7.4",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.10",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"esbuild": "^0.24.0",
"eslint": "~9.11.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "19.8.3",
"pgtools": "^1.0.1",
"prettier": "^3.3.3",
"prisma": "^5.20.0",
"react-refresh": "^0.14.2",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tslib": "^2.7.0",
"typescript": "~5.6.2",
"url-loader": "^4.1.1",
"verdaccio": "^6.0.0"
},
"nx": {
"includedScripts": []
}
}