-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.76 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.76 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
108
{
"name": "postcardify",
"version": "0.0.1",
"license": "AGPL-3.0",
"scripts": {
"format": "prettier --write \"apps/**/*.{ts,html,scss}\"",
"format:words": "prettier --write \"db/scripts/**/*.json\"",
"generate-api": "ng-openapi-gen --serviceIndex=api-services -i http://localhost:3000/swagger-yaml -o ./apps/front/src/6-shared/api/generated && node update-api && npm run format"
},
"dependencies": {
"@angular-architects/ngrx-toolkit": "^19.0.2",
"@angular/animations": "~19.1.0",
"@angular/common": "~19.1.0",
"@angular/compiler": "~19.1.0",
"@angular/core": "~19.1.0",
"@angular/forms": "~19.1.0",
"@angular/material": "^19.1.0",
"@angular/platform-browser": "~19.1.0",
"@angular/platform-browser-dynamic": "~19.1.0",
"@angular/router": "~19.1.0",
"@nestjs/common": "^10.0.2",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.0.2",
"@nestjs/swagger": "^8.1.1",
"@ngrx/operators": "^19.0.0",
"@ngrx/signals": "^19.0.0",
"@prisma/client": "^6.2.1",
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"jwt-decode": "^4.0.0",
"ngx-cookie-service": "^19.1.0",
"normalize.css": "^8.0.1",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ts-luxon": "^4.6.2",
"unsplash-js": "^7.0.19",
"uuid": "^11.0.5",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "~1.10.0",
"@analogjs/vitest-angular": "~1.10.0",
"@angular-devkit/build-angular": "~19.1.0",
"@angular-devkit/core": "~19.1.0",
"@angular-devkit/schematics": "~19.1.0",
"@angular/cli": "~19.1.0",
"@angular/compiler-cli": "~19.1.0",
"@angular/language-service": "~19.1.0",
"@eslint/js": "^9.8.0",
"@feature-sliced/eslint-config": "^0.1.1",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/angular": "^20.4.2",
"@nx/devkit": "20.4.2",
"@nx/eslint": "20.4.2",
"@nx/eslint-plugin": "20.4.2",
"@nx/jest": "20.4.2",
"@nx/js": "20.4.2",
"@nx/nest": "20.4.2",
"@nx/node": "20.4.2",
"@nx/playwright": "20.4.2",
"@nx/vite": "20.4.2",
"@nx/web": "20.4.2",
"@nx/webpack": "20.4.2",
"@nx/workspace": "20.4.2",
"@playwright/test": "^1.36.0",
"@schematics/angular": "~19.1.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^29.5.12",
"@types/node": "^22.13.1",
"@typescript-eslint/utils": "^8.19.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"angular-eslint": "^19.0.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-playwright": "^1.6.2",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "~22.1.0",
"ng-openapi-gen": "=0.52.0",
"nx": "20.4.2",
"openai": "^4.84.1",
"pg-promise": "^11.10.2",
"prettier": "^2.6.2",
"prisma": "^6.2.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "5.7.3",
"typescript-eslint": "^8.13.0",
"vite": "^5.0.0",
"vitest": "^1.3.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=20.10.0"
}
}