workspace setup

This commit is contained in:
Kevin Menn
2026-04-16 03:16:09 +02:00
parent 5202ff47db
commit a01812bd60
15 changed files with 14554 additions and 11 deletions
+17 -3
View File
@@ -1,13 +1,27 @@
{
"name": "manga-app-nuxt",
"name": "manga-app",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"frontend",
"backend",
"shared"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"dev:frontend": "pnpm --filter frontend dev",
"dev:backend": "pnpm --filter backend dev",
"build": "pnpm run build:*",
"build:frontend": "pnpm --filter frontend build",
"build:backend": "pnpm --filter backend build"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.33.0"
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@types/node": "^20.12.2",
"concurrently": "^8.2.1"
}
}