first commit

This commit is contained in:
mdares
2026-04-07 08:54:41 -06:00
commit 3d1a8ba07e
92 changed files with 15392 additions and 0 deletions

46
package.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "lavanderia-checo-sistema",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:seed": "prisma db seed"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.1.3",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"serialport": "^13.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.14",
"postcss": "^8.4.49",
"prisma": "^6.19.3",
"tailwindcss": "^3.4.16",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}