Files
dog18/client/package.json
sripwoud 00f8262fac refactor(client): move from vite to next (#1)
* 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`
2024-09-09 14:55:31 +02:00

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"
}
}