first commit - skeletal frame

This commit is contained in:
root
2026-01-31 04:07:32 +00:00
parent 7d12f5fddf
commit a582e1f272
32 changed files with 2043 additions and 0 deletions

21
frontend/package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "barkwho-frontend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"framer-motion": "^10.16.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.0",
"vite": "^5.0.0"
}
}