-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.73 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
{
"name": "e-shop-on-containers",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"e2e": "nx e2e",
"lint": "nx lint",
"typeorm": "ts-node --project ./apps/catalog-service/tsconfig.app.json -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"private": true,
"dependencies": {
"@angular/animations": "13.1.1",
"@angular/common": "13.1.1",
"@angular/compiler": "13.1.1",
"@angular/core": "13.1.1",
"@angular/forms": "13.1.1",
"@angular/platform-browser": "13.1.1",
"@angular/platform-browser-dynamic": "13.1.1",
"@angular/router": "13.1.1",
"@golevelup/nestjs-rabbitmq": "^1.18.1",
"@nestjs/axios": "0.0.3",
"@nestjs/common": "^8.2.3",
"@nestjs/core": "^8.2.3",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/microservices": "^8.2.3",
"@nestjs/platform-fastify": "^8.2.3",
"@nestjs/schedule": "^1.0.2",
"@nestjs/swagger": "^5.1.5",
"@nestjs/terminus": "^8.0.3",
"@nestjs/typeorm": "^8.0.2",
"@ng-bootstrap/ng-bootstrap": "5.2.1",
"amqp-connection-manager": "^3.7.0",
"amqplib": "^0.8.0",
"angular-auth-oidc-client": "^13.1.0",
"bootstrap": "4.4.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^10.0.0",
"fastify-swagger": "^4.12.6",
"jsonwebtoken": "^8.5.1",
"ngx-toastr": "10.1.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rxjs": "~7.4.0",
"tslib": "^2.3.1",
"typeorm": "^0.2.41",
"undici": "^4.12.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.1.2",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/compiler-cli": "13.1.1",
"@angular/language-service": "13.1.1",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^8.2.3",
"@nrwl/angular": "13.4.1",
"@nrwl/cli": "13.4.1",
"@nrwl/eslint-plugin-nx": "13.4.1",
"@nrwl/jest": "13.4.1",
"@nrwl/linter": "13.4.1",
"@nrwl/nest": "13.4.1",
"@nrwl/node": "13.4.1",
"@nrwl/tao": "13.4.1",
"@nrwl/workspace": "13.4.1",
"@nx-tools/nx-docker": "^2.0.2",
"@types/cron": "^1.7.3",
"@types/jest": "27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "16.11.13",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"jest": "27.4.5",
"jest-preset-angular": "11.0.1",
"prettier": "^2.5.1",
"ts-jest": "27.1.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "4.5.4"
}
}