This commit is contained in:
Arkaprabha Chakraborty
2025-12-14 05:33:05 +05:30
parent 25ead1d8bd
commit 43c516a005
37 changed files with 1037 additions and 523 deletions

View File

@@ -1,27 +1,34 @@
{
"name": "my-nextjs13-app",
"version": "0.1.0",
"name": "reduce-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@types/react": "^18.3.3",
"axios": "^1.7.3",
"dotenv": "^16.4.5",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-qr-code": "^2.0.15"
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.7",
"framer-motion": "^11.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.22.0"
},
"devDependencies": {
"postcss": "^8",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.5"
"typescript": "^5.3.3",
"vite": "^5.1.0"
}
}