-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.67 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "carshare-viewer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fetch": "tsx scripts/fetch.ts",
"lint": "biome check --write src",
"format": "biome format --write src",
"check": "biome check src && tsc --noEmit",
"type-check": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"packageManager": "pnpm@11.8.0",
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.1",
"@mui/material-nextjs": "^9.1.1",
"@types/leaflet.heat": "^0.2.5",
"leaflet": "^1.9.4",
"leaflet.heat": "^0.2.0",
"mongodb": "^7.3.0",
"next": "16.2.9",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-leaflet": "^5.0.0",
"react-leaflet-cluster": "^4.1.3",
"react-responsive-carousel": "^3.2.23",
"recharts": "3.9.0-canary.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@tailwindcss/postcss": "^4.3.1",
"@types/cli-progress": "^3.11.6",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.9.3",
"@types/proj4": "^2.19.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"cli-progress": "^3.12.0",
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"proj4": "^2.20.9",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{ts,tsx}": [
"bash -c 'tsc --noEmit'"
]
}
}