-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
160 lines (160 loc) · 4.97 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "@playsetonline/source",
"version": "1.5.0",
"license": "MIT",
"scripts": {
"start": "nx run-many --t serve",
"start:api": "nx run api:serve",
"start:app": "nx run app:serve",
"build": "nx build",
"build:api": "nx build api",
"build:app": "nx build app",
"serve:api": "nx serve api --prod",
"serve:app": "nx serve app --prod",
"codegen": "graphql-codegen",
"codegen:watch": "node --run codegen codegen --watch",
"test": "nx run-many -t test",
"test:api": "nx test api",
"test:api:watch": "nx test api -- --watch",
"test:api-integration": "nx run api:integrationTest",
"test-e2e": "nx run api-e2e:e2e",
"test:app": "nx test app",
"test:sdk": "nx test api-sdk",
"test:affected": "nx affected -t test --base dev",
"migration:check": "mikro-orm migration:pending",
"migration:create": "mikro-orm migration:create",
"migration:execute": "mikro-orm migration:up",
"lint": "lint-staged",
"prettier": "prettier --log-level warn -w",
"eslint": "eslint --max-warnings 0 --fix --flag unstable_config_lookup_from_file",
"stylelint": "stylelint --max-warnings 0 --fix",
"logs": "pm2 logs --raw --lines 100 app",
"release": "semantic-release",
"ncu": "npx -y npm-check-updates -u"
},
"private": true,
"dependencies": {
"@angular/animations": "~19.0.5",
"@angular/common": "~19.0.5",
"@angular/compiler": "~19.0.5",
"@angular/core": "~19.0.5",
"@angular/forms": "~19.0.5",
"@angular/platform-browser": "~19.0.5",
"@angular/platform-browser-dynamic": "~19.0.5",
"@angular/router": "~19.0.5",
"@angular/service-worker": "^19.0.5",
"@apollo/client": "^3.12.4",
"@apollo/server": "^4.11.2",
"@faker-js/faker": "^9.3.0",
"@mikro-orm/cli": "^6.4.1",
"@mikro-orm/core": "^6.4.1",
"@mikro-orm/entity-generator": "^6.4.1",
"@mikro-orm/migrations": "^6.4.1",
"@mikro-orm/nestjs": "^6.0.2",
"@mikro-orm/postgresql": "^6.4.1",
"@mikro-orm/reflection": "^6.4.1",
"@mikro-orm/seeder": "^6.4.1",
"@nestjs/apollo": "^12.2.2",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/graphql": "^12.2.2",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.15",
"@nestjs/schedule": "^4.1.2",
"@nestjs/throttler": "^6.3.0",
"@ngrx/signals": "^19.0.0",
"@tsparticles/confetti": "^3.7.1",
"apollo-angular": "^8.0.0",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"graphql": "^16.10.0",
"graphql-subscriptions": "^3.0.0",
"graphql-ws": "^5.16.0",
"idb": "^8.0.1",
"mikro-orm": "^6.4.1",
"ms": "^2.1.3",
"node-cache": "^5.1.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rxjs": "~7.8.1",
"the-new-css-reset": "^1.11.3",
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.6",
"@angular-devkit/core": "~19.0.6",
"@angular-devkit/schematics": "~19.0.6",
"@angular/cli": "~19.0.6",
"@angular/compiler-cli": "~19.0.5",
"@angular/language-service": "~19.0.5",
"@commitlint/config-nx-scopes": "^19.5.0",
"@eslint/js": "^9.17.0",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.15",
"@nx/angular": "20.3.0",
"@nx/devkit": "20.3.0",
"@nx/esbuild": "20.3.0",
"@nx/eslint": "20.3.0",
"@nx/eslint-plugin": "20.3.0",
"@nx/jest": "20.3.0",
"@nx/js": "20.3.0",
"@nx/nest": "20.3.0",
"@nx/node": "20.3.0",
"@nx/playwright": "20.3.0",
"@nx/web": "20.3.0",
"@nx/webpack": "20.3.0",
"@nx/workspace": "20.3.0",
"@playwright/test": "^1.49.1",
"@schematics/angular": "~19.0.6",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.1",
"@swc/helpers": "~0.5.15",
"@swc/jest": "^0.2.37",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/jest": "^29.5.14",
"@types/ms": "^0.7.34",
"@types/node": "^22.10.2",
"@types/passport-jwt": "^4.0.1",
"@typescript-eslint/utils": "^8.18.1",
"angular-eslint": "^19.0.2",
"commitizen": "^4.3.1",
"commitlint": "^19.6.1",
"cz-git": "^1.11.0",
"esbuild": "~0.19.12",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-rxjs-updated": "^1.0.23",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"jest-preset-angular": "~14.4.2",
"lint-staged": "^15.2.11",
"nx": "20.3.0",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.6.0",
"typescript-eslint": "^8.18.1",
"webpack-cli": "^6.0.1"
}
}