-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.44 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
{
"name": "pure-lowcode",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"shared/utils",
"shared/types",
"shared/postgres",
"shared/email",
"shared/shopify",
"shared/frontend-core",
"shared/marketplace-api",
"shared/state-engine",
"shared/backend",
"shared/auth",
"shared/image-service",
"shared/infra",
"generator",
"pim",
"pim/sharedTypes",
"pim/postgres",
"pim/domain",
"pim/frontend",
"pim/backend/node",
"pim/integrations/shopify",
"pim/integrations/images",
"pim/integrations/analysis",
"crm",
"crm/sharedTypes",
"crm/postgres",
"crm/frontend",
"crm/backend/node",
"crm/integrations/email",
"crm/integrations/shopify",
"apartments-admin",
"apartments-admin/sharedTypes",
"apartments-admin/postgres",
"apartments-admin/frontend",
"apartments-admin/backend/node",
"apartments-marketplace",
"apartments-marketplace/sharedTypes",
"apartments-marketplace/backend/node",
"apartments-marketplace/frontend",
"apartments-shared/rules"
],
"scripts": {
"test": "npm run test --workspaces --if-present",
"test:auth": "npm --workspace=@shared/auth test",
"test:utils": "npm --workspace=@shared/utils test",
"test:image-service": "npm --workspace=@shared/image-service test",
"test:email": "npm --workspace=@shared/email test",
"test:frontend-core": "npm --workspace=@shared/frontend-core test",
"test:marketplace-api": "npm --workspace=@shared/marketplace-api test",
"test:marketplace-backend": "npm --workspace=@apartments-marketplace/backend-node test",
"test:marketplace-frontend": "npm --workspace=@apartments-marketplace/frontend test"
},
"dependencies": {
"@vitejs/plugin-react": "^5.1.4",
"pluralize": "^8.0.0",
"vitest": "^4.0.18"
},
"devDependencies": {
"@types/pluralize": "^0.0.33"
},
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3",
"@mui/material": "7.3.7",
"@mui/x-data-grid": "7.29.12",
"@mui/x-date-pickers": "^8.27.2",
"@mui/icons-material": "7.3.7",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1"
}
}