-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "pv-frontpage",
"version": "1.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint --fix .",
"lint-ci": "eslint --max-warnings 0 .",
"test": "vitest",
"prettier": "prettier --write --ignore-path .prettierignore .",
"prettier-ci": "prettier --check --ignore-path .prettierignore ."
},
"dependencies": {
"@auth/core": "^0.40.0",
"@dagrejs/dagre": "^1.0.4",
"@dagrejs/graphlib": "^3.0.2",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@react-three/postprocessing": "^3.0.4",
"@tanstack/react-query": "^5.90.19",
"@uidotdev/usehooks": "^2.4.1",
"@vercel/analytics": "^1.6.1",
"@xyflow/react": "^12.10.0",
"csv-parser": "^3.2.0",
"deep-equal": "^2.2.3",
"framer-motion": "^12.29.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"leva": "^0.10.1",
"motion": "^12.29.0",
"next": "15.5.24",
"next-sitemap": "^4.2.3",
"phone": "^3.1.70",
"postal-code-validator": "^1.0.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"react-leaflet": "5.0.0-rc.2",
"react-leaflet-cluster": "^2.1.0",
"react-social-icons": "^6.25.0",
"react-spinners": "^0.17.0",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^15.5.9",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/dagre": "^0.7.53",
"@types/deep-equal": "^1.0.4",
"@types/express": "^5.0.6",
"@types/geojson": "^7946.0.16",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.21",
"@types/leaflet.markercluster": "^1.5.6",
"@types/node": "^20.19.30",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^4.1.11"
},
"pnpm": {
"overrides": {
"@babel/runtime@<7.26.10": ">=7.26.10",
"undici@>=6.0.0 <6.21.2": ">=6.21.2"
}
}
}