mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 09:52:09 +01:00
Uses `Intl.DisplayNames` to display localized language names in the language pie chart, enhancing user experience and readability. Also converts country and language values from the CSV data to ISO codes for standardization and improved data handling. Adds tooltip to display ISO language code.
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "livedash-node",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"format": "prettier --write .",
|
|
"prisma:generate": "prisma generate",
|
|
"prisma:migrate": "prisma migrate dev",
|
|
"prisma:seed": "node prisma/seed.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.8.2",
|
|
"@types/node-fetch": "^2.6.12",
|
|
"bcryptjs": "^3.0.2",
|
|
"chart.js": "^4.0.0",
|
|
"csv-parse": "^5.5.0",
|
|
"i18n-iso-countries": "^7.14.0",
|
|
"iso-639-1": "^3.1.5",
|
|
"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"
|
|
}
|
|
}
|