17 lines
424 B
JSON
17 lines
424 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|