This commit is contained in:
2026-03-19 18:00:46 +07:00
commit f72ad2769f
98 changed files with 9299 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "postgres-admin-control-plane",
"private": true,
"version": "1.0.0",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "npm run dev -w backend",
"dev:frontend": "npm run dev -w frontend",
"dev:backend": "npm run dev -w backend",
"build": "npm run build -w backend && npm run build -w frontend",
"test": "npm run test -w backend && npm run test -w frontend"
}
}