-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "indra",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"gateway:dev": "nx serve gateway",
"gateway:build": "nx run gateway:build:production",
"authorizer:dev": "nx serve authorizer",
"authorizer:build": "nx run authorizer:build:production"
},
"private": true,
"dependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/microservices": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"@nestjs/swagger": "^6.2.1",
"axios": "^1.3.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"kafkajs": "^2.2.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"tslib": "^2.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.3.9",
"@nrwl/esbuild": "^15.8.5",
"@nrwl/eslint-plugin-nx": "15.8.5",
"@nrwl/jest": "15.8.5",
"@nrwl/js": "15.8.5",
"@nrwl/linter": "15.8.5",
"@nrwl/nest": "15.8.5",
"@nrwl/node": "15.8.5",
"@nrwl/nx-cloud": "^15.1.1",
"@nrwl/webpack": "15.8.5",
"@nrwl/workspace": "15.8.5",
"@types/jest": "^29.4.0",
"@types/node": "~18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "~8.35.0",
"eslint-config-prettier": "8.6.0",
"jest": "^29.4.3",
"jest-environment-node": "^29.4.3",
"nx": "15.8.5",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5"
}
}