Funcionnal custom checkboxes, fixed small card component and added the ability to launch both backend and frontend at once

This commit is contained in:
Gu://em_ 2025-05-25 13:16:10 +02:00
parent f8bf646565
commit ca96f57fb8
17 changed files with 1438 additions and 77 deletions

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "wf-radio",
"version": "1.0.0",
"description": "",
"scripts": {
"start:frontend": "cd frontend && pnpm dev",
"start:backend": "cd backend && pnpm start",
"build:frontend": "cd frontend && pnpm build",
"start:dev": "npm-run-all --parallel start:frontend start:backend",
"start:prod": "npm-run-all --parallel build:frontend start:backend",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}