Files
sd-park-pass-map/package.json
Aram Chia Sarafian 369759a3f2 Enforce unique ZIP/library coordinates and improve test output
- Fix duplicate ZIP coordinates (92121/92130)
- Improve test output to show failing/conflicting values
- Tests now ensure all ZIPs and libraries are unique and non-overlapping
2025-07-13 20:27:22 -07:00

34 lines
745 B
JSON

{
"name": "sd-park-pass-locator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run test && next build",
"test": "jest",
"start": "next start",
"lint": "next lint",
"deploy": "./deploy.sh",
"deploy:nu": "./deploy.nu"
},
"dependencies": {
"leaflet": "^1.9.4",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4.2.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"jest": "^30.0.4",
"ts-jest": "^29.4.0",
"typescript": "^5"
}
}