chore: configure angular and postgres foundation

This commit is contained in:
Bastian Wagner
2026-08-18 18:02:40 +02:00
parent 4a689238e6
commit 2903a0d670
11 changed files with 6314 additions and 1117 deletions

View File

@@ -12,7 +12,10 @@
"build:web": "npm run build --workspace=@ashen-realms/web",
"build:api": "npm run build --workspace=@ashen-realms/api",
"build": "npm run build:web && npm run build:api",
"test": "npm run test --workspaces --if-present"
"test": "npm run test --workspaces --if-present",
"db:migrate": "npm run typeorm --workspace=@ashen-realms/api -- migration:run -d src/database/data-source.ts",
"db:revert": "npm run typeorm --workspace=@ashen-realms/api -- migration:revert -d src/database/data-source.ts",
"db:seed": "npm run seed --workspace=@ashen-realms/api"
},
"workspaces": [
"apps/*",
@@ -26,5 +29,10 @@
"author": "",
"license": "ISC",
"type": "commonjs",
"private": "true"
"private": "true",
"devDependencies": {
"caniuse-lite": "^1.0.30001809",
"css-tree": "^3.2.1",
"ts-node": "^10.9.2"
}
}