Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
410 changes: 408 additions & 2 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,27 @@
"private": true,
"type": "module",
"dependencies": {
"@supabase/supabase-js": "^2.78.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.9.4",
"web-vitals": "^3.1.0",
"react-icons": "^5.0.1"
"web-vitals": "^3.1.0"
},
"overrides": {
"@svgr/webpack": "^8.0.1",
"@adobe/css-tools": "^4.3.1",
"postcss": "^8.4.31"
},
"scripts": {
"start": "BROWSER=none WDS_SOCKET_PORT=0 vite --port 3000",
"start": "cross-env BROWSER=none WDS_SOCKET_PORT=0 vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"install": "npm install"
"install": "npm install"
},
"eslintConfig": {
"extends": [
Expand All @@ -45,8 +46,9 @@
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"cross-env": "^10.1.0",
"jsdom": "^26.1.0",
"vite": "^6.3.6",
"vitest": "^3.0.7"
}
}
}
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Routes, Route, Outlet } from "react-router-dom";

// 2. Import หน้าต่าง ๆ
import Dashboard from "./dashboard/Dashboard";
import Form from "./form/Form";
import Form from "./dashboard/Form.jsx";
import Status from "./status/Status.jsx";
import Login from "./login/Login.jsx";
import Report from "./report/Report.jsx";
Expand Down
Loading