-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
331 lines (331 loc) · 15.2 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
{
"name": "@app/nx-ng-starter",
"version": "8.1.1",
"private": true,
"description": "Monorepo starter: Nx, Angular, Angular Elements, Electron, NodeJS, NestJS, Firebase.",
"license": "MIT",
"author": "rfprod <zoidenmacht@zoho.com>",
"scripts": {
"affected:build": "nx affected:build",
"affected:dep-graph": "nx affected:dep-graph",
"affected:e2e": "nx affected:e2e",
"affected:lint": "nx affected:lint",
"affected:print": "nx print-affected --select=projects",
"affected:print-apps": "nx print-affected --type=app --select=projects",
"affected:print-libs": "nx print-affected --type=lib --select=projects",
"affected:test": "nx affected:test",
"analyze:circular-deps": "madge --circular --extensions ts ./apps ./libs ./tools --ts-config ./tsconfig.base.json",
"analyze:client": "yarn build:client:stats; npx webpack-bundle-analyzer ./dist/apps/client/stats.json",
"analyze:documentation": "yarn build:documentatiosn:stats; npx webpack-bundle-analyzer ./dist/apps/documentation/stats.json",
"audit:fix": "rm -rf node_module && yarn install --ignore-scripts; npm i --package-lock-only; rm yarn.lock; npm audit fix; yarn import; rm -rf package-lock.json node_modules; yarn install",
"build:all": "npx nx run-many --target=build --projects=api,client && yarn build:documentation",
"prebuild:client": "npx nx run client:configure-env",
"build:client": "npx nx build client --configuration production",
"postbuild:client": "npx nx run client:configure-env --reset",
"build:client:stats": "npx nx build client client --target analyze-bundle --stats-json",
"build:documentation": "bash tools/shell/build-docs.sh",
"build:documentation:stats": "npx nx build documentation --configuration analyze-bundle --stats-json",
"build:electron:client": "yarn build:client && electron-builder -c .electron/electron-builder.client.yml",
"build:electron:client:all": "yarn build:client && electron-builder -c .electron/electron-builder.client.yml -mwl",
"build:electron:client:mac": "yarn build:client && electron-builder -c .electron/electron-builder.client.yml --macos",
"build:electron:client:nix": "yarn build:client && electron-builder -c .electron/electron-builder.client.yml --linux AppImage deb tar.xz",
"build:electron:client:win": "yarn build:client && electron-builder -c .electron/electron-builder.client.yml --windows",
"prebuild:elements": "npx nx run elements:configure-env",
"build:elements": "npx nx build elements --configuration production",
"postbuild:elements": "npx nx run elements:configure-env --reset",
"docker:build": "bash ./tools/shell/docker/build.sh",
"docker:build:api": "npx nx build api --configuration production; yarn docker:build api production",
"docker:build:base": "yarn docker:build base",
"docker:build:client": "npx nx build server-prod --configuration production; npx nx build client --configuration production; yarn docker:build client production",
"docker:build:documentation": "npx nx build server-prod --configuration production; npx nx build documentation --configuration production; yarn docker:build documentation production",
"docker:build:elements": "npx nx build server-prod --configuration production; npx nx build elements --configuration production; yarn docker:build elements production",
"docker:build:envoy": "bash ./tools/shell/docker/build.sh envoy",
"docker:cleanup": "bash ./tools/shell/docker/task.sh cleanup",
"docker:login": "bash ./tools/shell/docker/task.sh login",
"docker:push": "bash ./tools/shell/docker/push.sh",
"docker:push:envoy": "bash ./tools/shell/docker/push.sh envoy",
"docker:run": "bash ./tools/shell/docker/run.sh",
"docker:run:envoy": "bash ./tools/shell/docker/run.sh envoy",
"e2e": "npx nx run-many --target e2e --all",
"firebase:deploy:ci:all": "bash tools/shell/firebase-deploy.sh $FIREBASE_DEPLOY_TOKEN all",
"firebase:deploy:ci:api": "bash tools/shell/firebase-deploy.sh $FIREBASE_DEPLOY_TOKEN api",
"firebase:deploy:ci:client": "bash tools/shell/firebase-deploy.sh $FIREBASE_DEPLOY_TOKEN client",
"firebase:deploy:ci:documentation": "bash tools/shell/firebase-deploy.sh $FIREBASE_DEPLOY_TOKEN documentation",
"firebase:deploy:ci:elements": "bash tools/shell/firebase-deploy.sh $FIREBASE_DEPLOY_TOKEN elements",
"firebase:deploy:localhost:all": "yarn build:all && bash tools/shell/firebase-deploy.sh localhost all",
"firebase:deploy:localhost:api": "npx nx build api --configuration firebase && bash tools/shell/firebase-deploy.sh localhost api",
"firebase:deploy:localhost:client": "yarn build:client && bash tools/shell/firebase-deploy.sh localhost client",
"firebase:deploy:localhost:documentation": "yarn build:documentation && bash tools/shell/firebase-deploy.sh localhost documentation",
"firebase:deploy:localhost:elements": "yarn build:elements && bash tools/shell/firebase-deploy.sh localhost elements",
"generate:changelog": "bash tools/shell/changelog.sh all",
"generate:client-gql": "npx nx run backend-interfaces:generate-client-definitions",
"generate:diagrams": "bash tools/shell/diagrams.sh",
"generate:e2e-test-report-index": "bash tools/shell/generate-e2e-test-report-index.sh",
"generate:env:documentation": "bash tools/shell/set-documentation-env.sh",
"generate:proto": "yarn generate:protobufjs; yarn generate:protoc",
"generate:protobufjs": "bash tools/shell/generate-proto.sh protobufjs",
"generate:protoc": "bash tools/shell/generate-proto.sh protoc",
"generate:unit-test-coverage-index": "bash tools/shell/generate-unit-test-coverage-index.sh",
"help": "nx help",
"postinstall": "husky && npx sort-json package.json && npx sort-package-json && node ./decorate-angular-cli.js && npx nx run tools:compile-executors",
"install:all:linux": "bash ./tools/shell/install.sh all",
"install:all:osx": "bash ./tools/shell/install.sh all osx",
"install:ci": "yarn install --frozen-lockfile",
"install:global": "bash ./tools/shell/install.sh global",
"install:project": "bash tools/shell/install.sh project",
"install:proto:linux": "bash ./tools/shell/install.sh proto",
"install:proto:linux:ci": "bash ./tools/shell/install.sh proto linux ci",
"install:proto:osx": "bash ./tools/shell/install.sh proto osx",
"install:shellcheck:linux": "bash ./tools/shell/install.sh shellcheck",
"install:shellcheck:linux:ci": "bash ./tools/shell/install.sh shellcheck linux ci",
"install:shellcheck:osx": "bash ./tools/shell/install.sh shellcheck osx",
"lint": "yarn lint:ts; yarn lint:html; yarn lint:scss; yarn lint:proto",
"lint:html": "npx nx run-many --target prettier-check --all",
"lint:proto": "protolint lint -config_path ./.protolint.yaml ./tools/proto/*",
"lint:scss": "npx nx run-many --target stylelint-check --all",
"lint:ts": "npx nx run-many --target lint --all",
"ng": "nx",
"nx": "nx",
"prestart": "npx nx run client:configure-env",
"start": "npx nx serve-with-api client || nx run client:configure-env --reset",
"start:api": "npx nx serve api",
"prestart:client": "npx nx run client:configure-env",
"start:client": "npx nx serve client || npx nx run client:configure-env --reset",
"start:client-server": "npx nx serve server-prod",
"prestart:documentation": "npx nx run documentation:configure-env",
"start:documentation": "npx nx serve documentation || npx nx run documentation:configure-env --reset",
"prestart:electron": "electron-builder install-app-deps",
"start:electron": "yarn build:client && electron .electron/",
"prestart:elements": "npx nx run elements:configure-env",
"start:elements": "npx nx serve elements",
"test": "npx nx run-many --target test --all --run-in-band",
"workspace:cleanup": "rm -rf .angular/* documentation/* dist/* coverage/* changelog/* tmp/ /tmp/nx/nx-ng-starter /tmp/jest_rs/nx-ng-starter",
"workspace:integrity-check": "bash tools/shell/yarn-extension.sh integrity-check",
"workspace:mmdc": "node ./node_modules/puppeteer/install.js; ./node_modules/.bin/mmdc"
},
"config": {
"commitizen": {
"maxHeaderWidth": 80,
"maxLineWidth": 100,
"minHeaderWidth": 16,
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"colors": "1.4.0",
"semver": ">=7.5.3",
"webpack": "5.94.0",
"word-wrap": ">=1.2.4"
},
"dependencies": {
"@angular/animations": "18.2.5",
"@angular/cdk": "18.2.5",
"@angular/common": "18.2.5",
"@angular/compiler": "18.2.5",
"@angular/core": "18.2.5",
"@angular/elements": "18.2.5",
"@angular/forms": "18.2.5",
"@angular/material": "18.2.5",
"@angular/material-moment-adapter": "18.2.5",
"@angular/platform-browser": "18.2.5",
"@angular/platform-browser-dynamic": "18.2.5",
"@angular/router": "18.2.5",
"@angular/service-worker": "18.2.5",
"@apollo/client": "3.11.8",
"@apollo/server": "4.11.0",
"@grpc/grpc-js": "1.11.3",
"@grpc/proto-loader": "0.7.13",
"@nestjs/apollo": "12.2.0",
"@nestjs/axios": "3.0.3",
"@nestjs/cache-manager": "2.2.2",
"@nestjs/common": "10.4.3",
"@nestjs/config": "3.2.3",
"@nestjs/core": "10.4.3",
"@nestjs/graphql": "12.2.0",
"@nestjs/jwt": "10.2.0",
"@nestjs/microservices": "10.4.3",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.3",
"@nestjs/platform-ws": "10.4.3",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "7.4.2",
"@nestjs/throttler": "6.2.1",
"@nestjs/websockets": "10.4.3",
"apollo-angular": "7.2.0",
"apollo-upload-client": "18.0.1",
"axios": "1.7.7",
"cache-manager": "5.7.6",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"compression": "1.7.4",
"core-js": "3.38.1",
"dotenv": "16.4.5",
"electron-squirrel-startup": "1.0.1",
"express": "4.21.0",
"graphql": "16.9.0",
"graphql-subscriptions": "2.0.0",
"graphql-tools": "9.0.1",
"graphql-upload": "16.0.2",
"grpc-web": "1.5.0",
"isomorphic-fetch": "3.0.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.1",
"tslib": "2.7.0",
"zone.js": "0.15.0"
},
"devDependencies": {
"@actions/core": "1.10.1",
"@angular-devkit/architect": "0.1802.5",
"@angular-devkit/build-angular": "18.2.5",
"@angular-devkit/core": "18.2.5",
"@angular-devkit/schematics": "18.2.5",
"@angular-eslint/builder": "18.3.1",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "18.2.5",
"@angular/compiler-cli": "18.2.5",
"@angular/language-service": "18.2.5",
"@capacitor/android": "6.1.2",
"@capacitor/cli": "6.1.2",
"@capacitor/core": "6.1.2",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.9",
"@graphql-codegen/typescript-apollo-angular": "4.0.0",
"@graphql-codegen/typescript-operations": "4.2.3",
"@mermaid-js/mermaid-cli": "11.2.0",
"@nestjs/schematics": "10.1.4",
"@nestjs/testing": "10.4.3",
"@ngrx/effects": "18.0.2",
"@ngrx/router-store": "18.0.2",
"@ngrx/store": "18.0.2",
"@ngx-translate/core": "15.0.0",
"@nx/angular": "19.8.0",
"@nx/cypress": "19.8.0",
"@nx/devkit": "19.8.0",
"@nx/eslint": "19.8.0",
"@nx/eslint-plugin": "19.8.0",
"@nx/jest": "19.8.0",
"@nx/js": "19.8.0",
"@nx/nest": "19.8.0",
"@nx/node": "19.8.0",
"@nx/plugin": "19.8.0",
"@nx/storybook": "19.8.0",
"@nx/webpack": "19.8.0",
"@nx/workspace": "19.8.0",
"@schematics/angular": "18.2.5",
"@sentry/angular-ivy": "7.114.0",
"@sentry/tracing": "7.114.0",
"@storybook/addon-controls": "8.3.2",
"@storybook/addon-interactions": "8.3.2",
"@storybook/angular": "8.3.2",
"@storybook/core-server": "8.3.2",
"@storybook/manager-api": "8.3.2",
"@storybook/preview-api": "8.3.2",
"@storybook/theming": "8.3.2",
"@stylistic/eslint-plugin": "2.8.0",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.26",
"@swc/helpers": "0.5.13",
"@types/apollo-upload-client": "18.0.0",
"@types/compression": "1.7.5",
"@types/d3": "7.4.3",
"@types/express": "4.17.21",
"@types/google-protobuf": "3.15.12",
"@types/graphql-upload": "16.0.7",
"@types/hammerjs": "2.0.45",
"@types/jest": "29.5.13",
"@types/jsdom": "21.1.7",
"@types/marked": "5.0.2",
"@types/node": "22.5.5",
"@types/readline-sync": "1.4.8",
"@types/websocket": "1.0.10",
"@types/ws": "8.5.12",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@typescript-eslint/utils": "8.6.0",
"@ungap/custom-elements": "1.3.0",
"@webcomponents/custom-elements": "1.6.0",
"@webcomponents/webcomponentsjs": "2.8.0",
"babel-loader": "9.2.1",
"commitizen": "4.3.0",
"copy-webpack-plugin": "12.0.2",
"cypress": "13.14.2",
"cypress-multi-reporters": "1.6.4",
"d3": "7.9.0",
"electron": "32.1.2",
"electron-builder": "25.0.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-no-unsanitized": "4.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-unicorn": "55.0.0",
"firebase": "10.13.2",
"firebase-admin": "12.5.0",
"firebase-functions": "6.0.1",
"google-protobuf": "3.21.4",
"graphql-tag": "2.12.6",
"hammerjs": "2.0.8",
"husky": "9.1.6",
"jasmine-marbles": "0.9.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"jest-preset-angular": "14.2.4",
"jsonc-eslint-parser": "2.4.0",
"marked": "10.0.0",
"material-design-icon-fonts-self-hosted-web": "1.0.7",
"memo-decorator": "2.0.1",
"mini-css-extract-plugin": "2.9.1",
"mocha": "10.7.3",
"mochawesome": "7.1.3",
"mochawesome-merge": "4.3.0",
"moment": "2.30.1",
"ng-packagr": "18.2.1",
"ngx-markdown": "18.0.0",
"nx": "19.8.0",
"postcss": "8.4.47",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.0.5",
"postcss-url": "10.1.3",
"prettier": "3.3.0",
"prettier-stylelint": "0.4.2",
"protobufjs": "7.4.0",
"readline-sync": "1.4.10",
"roboto-fontface": "0.10.0",
"sort-json": "2.0.1",
"sort-package-json": "2.10.1",
"source-map-loader": "5.0.0",
"storybook": "8.3.2",
"stylelint": "16.9.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-prettier": "5.0.2",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"url-loader": "4.1.1",
"util": "0.12.5",
"web-animations-js": "2.3.2",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "5.1.0",
"webpack-merge": "6.0.1",
"webpack-node-externals": "3.0.0",
"webpack-sources": "3.2.3"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20.12.0",
"npm": ">=10.5.2"
}
}