-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
238 lines (238 loc) · 8.63 KB
/
package.json
File metadata and controls
238 lines (238 loc) · 8.63 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
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
{
"name": "bakery-website",
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --no-coverage",
"test:watch": "jest --watch --no-coverage",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --no-coverage",
"test:specific": "jest --testPathPattern --no-coverage",
"test:update": "jest --updateSnapshot --no-coverage",
"nx": "nx",
"serve:all": "nx run-many --target=serve --all",
"build:all": "nx run-many --target=build --all",
"test:all": "nx run-many --target=test --all",
"serve:website": "nx serve website",
"serve:backend": "nx serve backend",
"build:website": "nx build website",
"build:backend": "nx build backend",
"dev:landing": "nx serve bakery-landing",
"build:landing": "nx build-static bakery-landing",
"build:landing:standalone": "cd apps/bakery-landing && npx next build",
"serve:landing": "nx serve-static bakery-landing",
"serve:api": "nx serve bakery-api",
"serve:api:simple": "node apps/bakery-api/simple-server.js",
"serve:shop": "nx serve bakery-shop",
"serve:management": "nx serve bakery-management",
"affected:build": "nx affected:build",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"prepare": "husky install",
"test:unit": "nx run-many --target=test --all --parallel=3",
"test:unit:shop": "nx test bakery-shop",
"test:unit:management": "nx test bakery-management",
"test:unit:landing": "nx test bakery-landing",
"test:unit:libs": "nx run-many --target=test --projects=shared-*,bakery-shop-*,bakery-management-*",
"test:unit:watch": "nx affected:test --watch",
"test:unit:coverage": "nx run-many --target=test --all --coverage --parallel=3",
"test:unit:ci": "nx run-many --target=test --all --ci --coverage --maxWorkers=2",
"test:e2e": "nx run-many --target=e2e --all",
"test:e2e:shop": "nx e2e bakery-shop-e2e",
"test:e2e:management": "nx e2e bakery-management-e2e",
"test:e2e:landing": "nx e2e bakery-landing-e2e",
"test:e2e:ci": "nx run-many --target=e2e-ci --all",
"test:e2e:headed": "nx run-many --target=e2e --all -- --headed",
"test:e2e:debug": "nx run-many --target=e2e --all -- --debug",
"test:integration": "nx run-many --target=test --projects=*-data-access,bakery-api --configuration=integration",
"lint:all": "nx run-many --target=lint --all --parallel=3",
"lint:fix": "nx run-many --target=lint --all --fix",
"lint:affected": "nx affected:lint",
"format": "nx format:write",
"format:check": "nx format:check",
"type-check": "nx run-many --target=type-check --all --parallel=3",
"validate": "npm run lint:all && npm run type-check && npm run test:unit",
"validate:ci": "npm run lint:all && npm run type-check && npm run test:unit:ci && npm run test:e2e:ci",
"affected:validate": "nx affected --target=lint && nx affected --target=type-check && nx affected --target=test",
"clean": "nx reset && rm -rf dist tmp coverage .nx",
"clean:cache": "nx reset",
"report:coverage": "nx run-many --target=test --all --coverage && open coverage/lcov-report/index.html",
"report:bundle": "nx run-many --target=analyze --all",
"migrate:check": "nx migrate check",
"migrate:run": "nx migrate --run-migrations",
"workspace:sync": "nx sync",
"deps:check": "nx report",
"deps:update": "nx migrate latest && npm install && nx migrate --run-migrations"
},
"dependencies": {
"@emailjs/browser": "^3.7.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.14.1",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/resource-timegrid": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@mui/icons-material": "^5.18.0",
"@mui/lab": "^5.0.0-alpha.152",
"@mui/material": "^5.18.0",
"@mui/material-nextjs": "^5.15.11",
"@mui/x-data-grid": "^8.9.2",
"@opentelemetry/auto-instrumentations-node": "^0.62.0",
"@opentelemetry/exporter-jaeger": "^2.0.1",
"@opentelemetry/resources": "^2.0.1",
"@opentelemetry/sdk-metrics": "^2.0.1",
"@opentelemetry/sdk-node": "^0.203.0",
"@opentelemetry/sdk-trace-base": "^2.0.1",
"@opentelemetry/semantic-conventions": "^1.36.0",
"@types/bcrypt": "^6.0.0",
"@types/express-validator": "^2.20.33",
"@types/helmet": "^0.0.48",
"@types/jsonwebtoken": "^9.0.10",
"@types/marked": "^5.0.2",
"@types/node-cron": "^3.0.11",
"@types/sequelize": "^4.28.20",
"@types/uuid": "^10.0.0",
"bcrypt": "^6.0.0",
"date-fns": "^4.1.0",
"eventemitter3": "^5.0.1",
"exceljs": "^4.4.0",
"express-validator": "^7.2.1",
"feed-reader": "^6.0.2",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"helmet": "^8.1.0",
"html-to-image": "^1.11.13",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"marked": "^16.1.2",
"next": "^16.1.6",
"next-seo": "^5.5.0",
"next-transpile-modules": "^10.0.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.5",
"puppeteer": "^24.15.0",
"qrcode.react": "^3.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.62.0",
"react-leaflet": "^4.2.1",
"react-markdown": "^10.1.0",
"react-open-weather": "^1.3.0",
"react-query": "^3.39.3",
"react-slideshow-image": "^4.0.4",
"recharts": "^2.15.4",
"remark-gfm": "^4.0.1",
"sequelize": "^6.37.7",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tslib": "^2.3.0",
"umzug": "^3.8.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@next/bundle-analyzer": "^12.3.7",
"@nx/devkit": "21.3.11",
"@nx/eslint": "^21.3.11",
"@nx/eslint-plugin": "21.3.11",
"@nx/express": "^21.3.11",
"@nx/jest": "^21.3.11",
"@nx/js": "^21.3.11",
"@nx/next": "^21.3.11",
"@nx/node": "^21.3.11",
"@nx/playwright": "^21.3.11",
"@nx/react": "^21.3.11",
"@nx/rollup": "21.3.11",
"@nx/vite": "21.3.11",
"@nx/web": "^21.3.11",
"@nx/workspace": "^21.3.11",
"@playwright/test": "^1.54.2",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/leaflet": "^1.9.20",
"@types/node": "^20.0.0",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.20",
"@types/react-dom": "18.3.0",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^3.0.0",
"ajv": "^8.0.0",
"autoprefixer": "^10.4.8",
"babel-jest": "^30.0.2",
"core-js": "^3.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-next": "^15.2.4",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.0.3",
"nx": "21.3.11",
"prettier": "^2.7.1",
"rollup": "^4.14.0",
"sequelize-cli": "^6.6.3",
"sharp": "^0.34.3",
"sqlite3": "^5.1.7",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"typescript": "~5.8.2",
"vite": "^6.0.0",
"vite-plugin-dts": "~4.5.0",
"vitest": "^3.0.0"
},
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
},
"nx": {}
}