Initial commit: Meshkee dashboards monorepo.

Includes business, customer, and super-admin apps with shared packages and production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-07-22 13:48:53 +03:30
co-authored by Cursor
commit f566387c61
509 changed files with 62690 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "meshkeeapp",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:customer": "npm run dev -w @meshkee/customer-dashboard",
"dev:business": "npm run dev -w @meshkee/business-dashboard",
"dev:super-admin": "npm run dev -w @meshkee/super-admin",
"build:packages": "npm run build -w @meshkee/dashboard-core && npm run build -w @meshkee/dashboard-ui",
"build:customer": "npm run build -w @meshkee/customer-dashboard",
"build:business": "npm run build -w @meshkee/business-dashboard",
"build:super-admin": "npm run build -w @meshkee/super-admin",
"build:apps": "npm run build:customer && npm run build:business && npm run build:super-admin",
"build": "npm run build:packages && npm run build:apps"
}
}