refactor: edit tailwindcss classes and change code formatting, therefore added .prettierrc file

fix: frontend bug where the passwords won't be checked when the password is changed
This commit is contained in:
2026-07-08 14:56:43 +02:00
parent 9c50c3f300
commit 6be34c93aa
36 changed files with 1280 additions and 1145 deletions
+6 -3
View File
@@ -9,12 +9,15 @@
"version": "0.1.0-dev",
"description": "",
"scripts": {
"build:shared": "npm run build --workspace=@stockhome/shared",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:backend": "npm run dev --workspace=backend",
"dev:backend": "npm run build:shared && npm run dev --workspace=backend",
"dev:docker": "docker compose -f docker-compose.dev.yml up -d --wait",
"dev": "npm run dev:docker && concurrently --kill-others \"npm:dev:frontend\" \"npm:dev:backend\"",
"dev:stop": "docker compose -f docker-compose.dev.yml down",
"buildProd": "npm run build --workspace=frontend && npm run build --workspace=backend"
"buildProd": "npm run build:shared && npm run build:backend && npm run build:frontend"
},
"repository": {
"type": "git",
@@ -33,4 +36,4 @@
"@types/express": "^5.0.6",
"concurrently": "^10.0.3"
}
}
}