This commit is contained in:
2026-03-19 16:07:35 +07:00
commit 39b0358b08
63 changed files with 3128 additions and 0 deletions

14
package.json Normal file
View File

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