Replace Payload with Elysia admin

Co-authored-by: Codex <codex@openai.com>
This commit is contained in:
dexx
2026-06-05 21:12:48 +03:00
parent 92cf1eaa63
commit 8e2f75aa77
27 changed files with 2066 additions and 989 deletions
+11 -16
View File
@@ -1,24 +1,19 @@
{
"name": "pozor-board",
"name": "pozor",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "15.3.4",
"react": "19.0.0",
"react-dom": "19.0.0"
"dev": "concurrently -n site,api -c white,gray \"npm.cmd run dev --workspace @pozor/site\" \"npm.cmd run dev --workspace @pozor/api\"",
"dev:site": "npm.cmd run dev --workspace @pozor/site",
"dev:api": "npm.cmd run dev --workspace @pozor/api",
"build": "npm.cmd run build --workspace @pozor/site && npm.cmd run build --workspace @pozor/api",
"build:site": "npm.cmd run build --workspace @pozor/site",
"build:api": "npm.cmd run build --workspace @pozor/api"
},
"devDependencies": {
"@types/node": "22.15.29",
"@types/react": "19.0.12",
"@types/react-dom": "19.0.4",
"eslint": "9.28.0",
"eslint-config-next": "15.3.4",
"typescript": "5.8.3"
"concurrently": "^9.2.1"
}
}