2025-02-24 12:37:15 +00:00
|
|
|
{
|
2025-03-03 14:52:15 +00:00
|
|
|
"name": "earthquake-website",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev --turbopack",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
2025-04-17 15:18:06 +01:00
|
|
|
"lint": "next lint",
|
|
|
|
|
"start:server": "dist/index.js"
|
2025-03-03 14:52:15 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@prisma/client": "^6.4.1",
|
2025-05-09 10:30:12 +01:00
|
|
|
"@types/jsonwebtoken": "^9.0.9",
|
2025-03-23 15:24:10 +00:00
|
|
|
"@types/mapbox-gl": "^3.4.1",
|
2025-04-29 18:07:25 +01:00
|
|
|
"axios": "^1.9.0",
|
2025-04-17 15:18:06 +01:00
|
|
|
"bcryptjs": "^3.0.2",
|
|
|
|
|
"body-parser": "^2.2.0",
|
2025-05-12 13:42:44 +01:00
|
|
|
"csv-parse": "^5.6.0",
|
2025-04-17 15:18:06 +01:00
|
|
|
"csv-parser": "^3.2.0",
|
2025-05-09 10:30:12 +01:00
|
|
|
"dotenv": "^16.5.0",
|
2025-04-28 19:03:29 +01:00
|
|
|
"easy-peasy": "^6.1.0",
|
2025-04-17 15:18:06 +01:00
|
|
|
"express": "^5.1.0",
|
|
|
|
|
"fs": "^0.0.1-security",
|
2025-05-09 10:30:12 +01:00
|
|
|
"jose": "^6.0.11",
|
|
|
|
|
"jsonwebtoken": "^9.0.2",
|
2025-04-17 15:18:06 +01:00
|
|
|
"jwt-decode": "^4.0.0",
|
2025-03-23 15:24:10 +00:00
|
|
|
"leaflet": "^1.9.4",
|
2025-05-04 20:19:47 +01:00
|
|
|
"lodash": "^4.17.21",
|
2025-03-23 15:24:10 +00:00
|
|
|
"mapbox-gl": "^3.10.0",
|
2025-05-12 09:58:25 +01:00
|
|
|
"next": "^15.1.7",
|
2025-04-17 15:18:06 +01:00
|
|
|
"path": "^0.12.7",
|
2025-03-03 14:52:15 +00:00
|
|
|
"prisma": "^6.4.1",
|
2025-05-12 09:58:25 +01:00
|
|
|
"react": "^19.1.0",
|
|
|
|
|
"react-dom": "^19.1.0",
|
2025-03-19 19:20:18 +00:00
|
|
|
"react-icons": "^5.5.0",
|
2025-03-23 15:24:10 +00:00
|
|
|
"react-leaflet": "^5.0.0",
|
2025-04-29 18:50:03 +01:00
|
|
|
"react-node": "^1.0.2",
|
2025-05-09 10:30:12 +01:00
|
|
|
"swr": "^2.3.3",
|
|
|
|
|
"zod": "^3.24.4"
|
2025-03-03 14:52:15 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/eslintrc": "^3",
|
2025-05-12 09:58:25 +01:00
|
|
|
"@types/bcryptjs": "^5.0.2",
|
2025-04-17 15:18:06 +01:00
|
|
|
"@types/express": "^5.0.1",
|
2025-03-03 14:52:15 +00:00
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "15.1.7",
|
|
|
|
|
"postcss": "^8",
|
|
|
|
|
"tailwindcss": "^3.4.1",
|
|
|
|
|
"typescript": "^5"
|
|
|
|
|
}
|
2025-05-12 13:42:44 +01:00
|
|
|
}
|