Files
Spanglish/frontend/package.json
Michaël 651a10dc9c Add frontend PORT env config and remove package-lock.json from repo
- Add PORT=3002 to frontend .env.example
- Use dotenv-cli to load env vars for next dev/start
- Add package-lock.json to .gitignore and remove from tracking
2026-01-29 16:14:02 -03:00

34 lines
791 B
JSON

{
"name": "frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "dotenv -e .env -- next dev",
"build": "next build",
"start": "dotenv -e .env -- next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.4",
"clsx": "^2.1.1",
"next": "^14.2.4",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^11.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2"
}
}