feat(v1): add basic backend and frontend

This commit is contained in:
2026-07-09 00:37:41 +03:30
parent d9eedb3d8e
commit ae240e7ac1
54 changed files with 5829 additions and 0 deletions

31
frontend/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "spatial-image-enhancer-pro",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0",
"test": "vitest run"
},
"dependencies": {
"@vitejs/plugin-react": "latest",
"vite": "latest",
"react": "latest",
"react-dom": "latest",
"react-quick-pinch-zoom": "latest",
"recharts": "latest",
"lucide-react": "latest",
"prop-types": "latest"
},
"devDependencies": {
"tailwindcss": "3.4.17",
"postcss": "8.4.49",
"autoprefixer": "10.4.20",
"vitest": "latest",
"@testing-library/react": "latest",
"@testing-library/jest-dom": "latest",
"jsdom": "latest"
}
}