-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.39 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
{
"name": "frontfuse-platform",
"version": "1.0.0",
"description": "Microfrontend hosting platform with runtime Module Federation",
"private": true,
"workspaces": [
"backend",
"backend/core",
"backend/security",
"backend/applications",
"shared",
"packages/identity",
"billing-client",
"custom-hostname-client",
"packages/billing-ui",
"packages/chat-client",
"packages/chat-ui",
"packages/identity-ui",
"packages/auth-ui",
"packages/account-security-ui",
"packages/portal-branding-ui",
"portal-client",
"packages/i18n",
"packages/i18n-translate",
"packages/feature-flags",
"packages/security",
"design-system",
"services/chat-service",
"services/email-service",
"services/notification-service"
],
"scripts": {
"dev": "echo 'Use: npm run docker:up for development'",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:backend": "docker exec -it fuzefront-backend bash",
"docker:frontend": "docker exec -it fuzefront-frontend bash",
"build:backend": "npm run build -w backend",
"build:shared": "npm run build -w shared",
"test:backend": "npm run test -w backend",
"type-check:backend": "npm run type-check -w backend",
"check:workspace-deps": "node scripts/check-workspace-deps.mjs",
"check:dockerfile-lockfile": "node scripts/check-dockerfile-lockfile.mjs"
},
"devDependencies": {
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"ajv": "^8.17.1",
"concurrently": "^8.2.2",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"wrangler": "^4.26.1"
},
"overrides": {
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.6",
"tar": ">=7.5.16"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@eslint/config-array": "^0.21.0",
"@eslint/object-schema": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"glob": "^11.0.3",
"lru-cache": "^11.1.0",
"node-addon-api": "^8.5.0",
"permitio": "^2.7.4",
"prebuild-install": "^7.1.3",
"rimraf": "^6.0.1"
}
}