-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "fishbase-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"import-data": "tsx scripts/import-csv.ts",
"pre-commit": "npm run lint && npm run type-check"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"leaflet": "^1.9.4",
"next": "15.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"recharts": "^2.15.0",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/leaflet": "^1.9.14",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"csv-parser": "^3.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}