-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.21 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.21 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
{
"name": "clean-architecture-monorepo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.0",
"@angular/common": "^12.2.0",
"@angular/compiler": "^12.2.0",
"@angular/core": "^12.2.0",
"@angular/forms": "^12.2.0",
"@angular/platform-browser": "^12.2.0",
"@angular/platform-browser-dynamic": "^12.2.0",
"@angular/router": "^12.2.0",
"@capacitor/core": "^3.2.5",
"@casl/ability": "^5.4.3",
"@ionic/angular": "^5.8.3",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.1.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/swagger": "^5.1.5",
"@nestjs/throttler": "^2.0.0",
"@ngneat/transloco": "^3.1.1",
"@ngxs/router-plugin": "^3.7.3",
"@ngxs/store": "^3.7.3",
"@nrwl/angular": "12.10.1",
"@prisma/client": "^3.8.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"helmet": "^4.6.0",
"jwks-rsa": "^2.0.5",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.1",
"swagger-ui-express": "^4.3.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.0",
"@angular-eslint/eslint-plugin": "~12.3.0",
"@angular-eslint/eslint-plugin-template": "~12.3.0",
"@angular-eslint/template-parser": "~12.3.0",
"@angular/cli": "~12.2.0",
"@angular/compiler-cli": "^12.2.0",
"@angular/language-service": "^12.2.0",
"@capacitor/android": "^3.2.5",
"@capacitor/cli": "^3.2.5",
"@capacitor/ios": "^3.2.5",
"@nestjs/schematics": "^8.0.0",
"@nestjs/testing": "^8.0.0",
"@ngxs/devtools-plugin": "^3.7.3",
"@nrwl/cli": "12.10.1",
"@nrwl/cypress": "12.10.1",
"@nrwl/eslint-plugin-nx": "12.10.1",
"@nrwl/jest": "12.10.1",
"@nrwl/linter": "12.10.1",
"@nrwl/nest": "12.10.1",
"@nrwl/node": "12.10.1",
"@nrwl/react": "^12.0.0",
"@nrwl/storybook": "^13.4.4",
"@nrwl/tao": "12.10.1",
"@nrwl/workspace": "12.10.1",
"@nxtend/capacitor": "^12.0.0",
"@nxtend/ionic-angular": "^12.1.0",
"@storybook/addon-essentials": "~6.3.0",
"@storybook/angular": "~6.3.0",
"@storybook/builder-webpack5": "~6.3.0",
"@storybook/manager-webpack5": "~6.3.0",
"@types/compression": "^1.7.2",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "~4.31.1",
"@typescript-eslint/parser": "~4.31.1",
"cypress": "^8.3.0",
"eslint": "7.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.2.3",
"jest-preset-angular": "10.0.1",
"prettier": "^2.3.1",
"prisma": "^3.8.1",
"supertest": "^6.2.1",
"ts-jest": "27.0.5",
"typescript": "~4.3.5"
}
}