-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
107 lines (107 loc) · 3.67 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@nestjs-json-api/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"typeorm": "ts-node -r tsconfig-paths/register -r dotenv/config --project libs/database/tsconfig.lib.json ./node_modules/typeorm/cli.js -d libs/database/src/lib/config-cli.ts",
"typeorm:run": "npm run typeorm migration:run",
"typeorm:revert": "npm run typeorm migration:revert",
"seed:run": "ts-node -r tsconfig-paths/register -r dotenv/config --project libs/database/tsconfig.lib.json ./node_modules/@jorgebodega/typeorm-seeding/dist/cli.js -d libs/database/src/lib/config-cli.ts seed libs/database/src/lib/seeders/root.seeder.ts",
"demo:json-api": "nx run json-api-server:serve:development",
"demo:json-api-front": "nx run json-api-front:serve:development"
},
"private": true,
"dependencies": {
"@anatine/zod-nestjs": "^2.0.5",
"@anatine/zod-openapi": "^2.2.3",
"@angular/animations": "18.2.0",
"@angular/common": "18.2.0",
"@angular/compiler": "18.2.0",
"@angular/core": "18.2.0",
"@angular/forms": "18.2.0",
"@angular/platform-browser": "18.2.0",
"@angular/platform-browser-dynamic": "18.2.0",
"@angular/router": "18.2.0",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/platform-express": "10.3.3",
"@nestjs/platform-socket.io": "^10.3.7",
"@nestjs/platform-ws": "^10.3.7",
"@nestjs/swagger": "^7.3.0",
"@nestjs/typeorm": "^10.0.2",
"@nestjs/websockets": "^10.3.7",
"axios": "^1.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"nestjs-pino": "4.0.0",
"pg": "8.11.3",
"pino-http": "9.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"socket.io-client": "^4.7.5",
"tslib": "^2.3.0",
"typeorm": "^0.3.20",
"uuid": "^10.0.0",
"zod": "^3.22.4",
"zod-validation-error": "^3.0.2",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.0",
"@angular-devkit/core": "18.2.0",
"@angular-devkit/schematics": "18.2.0",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.2.0",
"@angular/compiler-cli": "18.2.0",
"@angular/language-service": "18.2.0",
"@faker-js/faker": "^8.4.1",
"@jorgebodega/typeorm-factory": "^1.4.0",
"@jorgebodega/typeorm-seeding": "^6.0.1",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/angular": "19.6.0",
"@nx/eslint": "19.6.0",
"@nx/eslint-plugin": "19.6.0",
"@nx/jest": "19.6.0",
"@nx/js": "19.6.0",
"@nx/nest": "19.6.0",
"@nx/node": "19.6.0",
"@nx/web": "19.6.0",
"@nx/webpack": "19.6.0",
"@nx/workspace": "19.6.0",
"@schematics/angular": "18.2.0",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.11",
"@types/jest": "29.5.12",
"@types/node": "~18.16.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "7.18.0",
"autoprefixer": "^10.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "14.1.0",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "18.2.0",
"nx": "19.6.0",
"pg-mem": "^3.0.2",
"postcss": "^8.4.5",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"verdaccio": "^5.0.4",
"webpack-cli": "^5.1.4"
},
"nx": {
"includedScripts": []
}
}