Files
livedash-node/package.json
Kaj Kowalski b6b67dcd78 feat: update package dependencies and improve session handling
- Added @tailwindcss/postcss to devDependencies for better PostCSS integration.
- Enhanced session import logic in refresh-sessions.ts to ensure proper data mapping and type safety.
- Updated postcss.config.js to use the correct plugin name for Tailwind CSS.
- Modified tsconfig.json to temporarily disable strict mode and allow implicit any types for smoother development.
2025-05-21 21:14:48 +02:00

46 lines
1.3 KiB
JSON

{
"name": "livedash-node",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"dependencies": {
"@prisma/client": "^6.8.2",
"@types/node-fetch": "^3.0.2",
"bcryptjs": "^3.0.2",
"chart.js": "^4.0.0",
"csv-parse": "^5.5.0",
"next": "^15.3.2",
"next-auth": "^4.24.11",
"node-cron": "^4.0.6",
"node-fetch": "^3.3.2",
"react": "^19.1.0",
"react-chartjs-2": "^5.0.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.7",
"@types/bcryptjs": "^2.4.2",
"@types/node": "^22.15.21",
"@types/node-cron": "^3.0.8",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"autoprefixer": "^10.4.0",
"eslint": "^9.27.0",
"eslint-config-next": "^15.3.2",
"postcss": "^8.4.0",
"prettier": "^3.5.3",
"prisma": "^6.8.2",
"typescript": "^5.0.0"
}
}