mirror of
https://github.com/dog-18/dog18.git
synced 2026-01-11 14:48:02 -05:00
* wip * refactor: use `next` instead of `vite` * fix(client): set auth in store before navigating to protected route * fix: render conditionally parts of Header * fix(client): add missing deps * fix(client): do not prerender Login component * fix: add missing `react-spinner` dep * refactor(client): do not use LED component * style: change Loader color * chore: add `lottie-react` * fix(client): add `socket.io-client` dep * chore: disable next lint during build * perf: optimize with `million`
32 lines
676 B
JSON
32 lines
676 B
JSON
{
|
|
"name": "client",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"easy-peasy": "^6.0.5",
|
|
"easyqrcodejs": "^4.6.1",
|
|
"js-cookie": "^3.0.5",
|
|
"lottie-react": "^2.4.0",
|
|
"million": "^3.1.11",
|
|
"next": "14.2.8",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-spinners": "^0.14.1",
|
|
"socket.io-client": "^4.7.5",
|
|
"swr": "^2.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-cookie": "^3.0.6",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
}
|
|
}
|