-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
176 lines (176 loc) · 6.87 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
{
"name": "conf-match",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"nx": "nx",
"start": "ng serve",
"start:local-lan": "ng serve --host=0.0.0.0",
"start:noreload": "ng serve --no-live-reload",
"start:local": "ng serve --configuration=local",
"start:local:noreload": "ng serve --configuration=local --no-live-reload",
"start:serverless:dynamodb": "cd serverless && sls offline start",
"start:serverless:seed": "cd serverless && sls dynamodb migrate && sls dynamodb seed",
"build": "ng build --prod --vendorChunk",
"test": "ng test",
"test:watch": "ng test --watch=true --browsers=Chrome",
"lint": "nx workspace-lint && ng lint",
"lint:fix": "nx workspace-lint && nx affected:lint --fix --all",
"e2e": "ng e2e",
"e2e:client": "ng e2e client-e2e",
"e2e:client:debug": "ng e2e client-e2e --watch",
"start:admin": "ng serve admin",
"start:admin:noreload": "ng serve admin --no-live-reload",
"start:admin:local": "ng serve admin --configuration=local",
"start:admin:local:noreload": "ng serve admin --configuration=local --no-live-reload",
"build:admin": "ng build admin --prod",
"test:admin": "ng test admin",
"e2e:admin": "ng e2e admin-e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write --all",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"devtools:cucumber:report": "node ./tools/generate-cucumber-report.js",
"devtools:mochawesome:report": "npx mochawesome-merge cyreport/mochawesome-report/mochawesome*.json > cyreport/mochawesome.json",
"precise-commits": "precise-commits",
"storybook": "nx run shared:storybook --port 6006",
"postinstall": "node ./decorate-angular-cli.js",
"__postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"workspace-generator": "nx workspace-generator",
"analyze": "node --max_old_space_size=10000 node_modules/@angular/cli/bin/ng build --prod --vendorChunk --stats-json --build-optimizer=true && npx webpack-bundle-analyzer dist/apps/client/stats.json",
"compodoc:client:start": "npx @compodoc/compodoc -p ./apps/client/tsconfig.doc.json -d ./apps/client/documentation/ --name \"Let's Chat With\" --includes docs && npx @compodoc/compodoc -s -d ./apps/client/documentation",
"process-schema": "node serverless/transform-schema.js && amplify codegen && npm run format -- --files=libs/api/src/lib/api.service.ts",
"watch-schema-changes": "nodemon --watch serverless/amplify-schema.graphql --exec 'npm run process-schema'",
"pregenerate-seed-data": "tsc -p ./tools/generators/generate-seed-data/tsconfig.json",
"generate-seed-data": "node ./tools/generators/generate-seed-data/index.js"
},
"private": true,
"husky": {
"hooks": {
"commit-msg": "npx --no-install commitlint --verbose --edit $1",
"pre-push": "hooks/pre-push.sh $HUSKY_GIT_STDIN",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@angular/animations": "14.2.10",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.10",
"@angular/compiler": "14.2.10",
"@angular/core": "14.2.10",
"@angular/forms": "14.2.10",
"@angular/platform-browser": "14.2.10",
"@angular/platform-browser-dynamic": "14.2.10",
"@angular/router": "14.2.10",
"@angular/service-worker": "14.2.10",
"@aws-amplify/api-graphql": "^1.2.29",
"@aws-amplify/auth": "^3.4.29",
"@aws-amplify/core": "^3.8.21",
"@ngneat/transloco": "4.1.1",
"@ngrx/component": "^14.3.2",
"@ngrx/component-store": "14.0.2",
"@ngrx/effects": "14.0.2",
"@ngrx/store": "14.0.2",
"@storybook/core-server": "6.4.22",
"@this-dot/route-config": "1.2.5",
"@zxing/browser": "^0.1.1",
"@zxing/library": "^0.19.1",
"@zxing/ngx-scanner": "^3.6.2",
"apollo-angular": "^5.0.0",
"apollo-client": "^2.6.9",
"apollo-link": "^1.2.14",
"aws-appsync": "^3.0.3",
"core-js": "3.9.1",
"date-fns": "2.29.3",
"graphql": "^15.0.0",
"graphql-tag": "^2.10.3",
"hammerjs": "^2.0.8",
"qrcode": "^1.5.1",
"rxjs": "7.5.7",
"social-links": "^1.10.0",
"tslib": "^2.0.0",
"uuid": "^9.0.0",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/architect": "0.1402.9",
"@angular-devkit/build-angular": "14.2.9",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "14.2.10",
"@angular/language-service": "14.2.10",
"@babel/core": "~7.20.12",
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@compodoc/compodoc": "^1.1.15",
"@ngrx/store-devtools": "14.0.2",
"@nrwl/angular": "^14.8.6",
"@nrwl/cli": "14.8.6",
"@nrwl/cypress": "14.8.6",
"@nrwl/eslint-plugin-nx": "14.8.6",
"@nrwl/jest": "14.8.6",
"@nrwl/linter": "14.8.6",
"@nrwl/storybook": "14.8.6",
"@nrwl/webpack": "^15.6.3",
"@nrwl/workspace": "14.8.6",
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-knobs": "~6.3.0",
"@storybook/angular": "6.4.22",
"@storybook/builder-webpack5": "6.4.22",
"@storybook/manager-webpack5": "6.4.22",
"@storybook/react": "6.4.22",
"@types/jasmine": "4.0.3",
"@types/jest": "28.1.8",
"@types/node": "14.14.33",
"@types/prompt": "^1.1.5",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"babel-loader": "8.0.6",
"codelyzer": "6.0.1",
"cucumber-html-reporter": "^5.4.0",
"cypress": "^7.1.0",
"cypress-cucumber-preprocessor": "^4.0.3",
"dotenv": "10.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"husky": "^4.3.8",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.2",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"karma-spec-reporter": "0.0.34",
"lint-staged": "^10.5.4",
"mochawesome": "^6.2.2",
"nodemon": "^2.0.15",
"nx": "14.8.6",
"precise-commits": "^1.0.2",
"prettier": "2.7.1",
"prompt": "^1.3.0",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.8.4",
"webpack": "5.74.0"
}
}