-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "commute-lens",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"fflate": "^0.8.3",
"html-to-image": "^1.11.13",
"lucide-react": "^1.31.0",
"maplibre-gl": "^6.3.0",
"motion": "^13.1.0",
"next": "16.3.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"zod": "4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.3",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"eslint": "9.39.2",
"eslint-config-next": "16.3.0",
"jsdom": "30.0.1",
"prettier": "3.9.6",
"tailwindcss": "4.3.3",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}