This commit performs a major cleanup of the `adventure-rental-app` by removing all existing components, pages, layouts, and project brief documents. The application is reduced to a minimal Vite shell. - Deleted all authentication, chatbot, and dashboard components and pages. - Removed outdated project brief and PRD markdown files. - Updated Vite and `@vitejs/plugin-react` dependencies. Additionally, the `framer-motion` dependency was added to the `bookoomoo-app`.
21 lines
634 B
JSON
21 lines
634 B
JSON
{
|
|
"name": "karyaman-project-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"kediritechnopark-app",
|
|
"bookoomoo-app"
|
|
],
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run dev:bookoomoo",
|
|
"dev:bookoomoo": "npm --workspace bookoomoo-app run dev",
|
|
"dev:kediri": "npm --workspace kediritechnopark-app run dev",
|
|
"build:bookoomoo": "npm --workspace bookoomoo-app run build",
|
|
"build:kediri": "npm --workspace kediritechnopark-app run build",
|
|
"preview:bookoomoo": "npm --workspace bookoomoo-app run preview",
|
|
"preview:kediri": "npm --workspace kediritechnopark-app run preview"
|
|
}
|
|
}
|