init import projet

This commit is contained in:
2026-05-03 21:58:59 +02:00
parent f3756fdf8d
commit 8d3df9bbbb
179 changed files with 37694 additions and 132 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "le-juste-poids",
"private": true,
"version": "0.1.0",
"workspaces": [
"apps/api",
"apps/web"
],
"scripts": {
"dev:api": "npm --workspace apps/api run start:dev",
"dev:web": "npm --workspace apps/web run dev",
"build": "npm run build -w apps/api && npm run build -w apps/web",
"start": "docker compose up --build",
"start:detached": "docker compose up --build -d",
"stop": "docker compose down"
}
}