initialize project with essential configuration files

This commit is contained in:
2026-05-06 08:39:27 +02:00
commit 591395a1bb
3 changed files with 21 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"name": "fitness-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:web": "pnpm --filter web dev",
"build:web": "pnpm --filter web build",
"dev:api": "pnpm --filter api dev",
"build:api": "pnpm --filter api build"
}
}