Initial commit: working SD Park Pass Map app with deploy scripts and .gitignore

This commit is contained in:
Aram Chia Sarafian
2025-07-13 18:59:51 -07:00
commit ba831bf15a
20 changed files with 9669 additions and 0 deletions

33
package.json Normal file
View File

@ -0,0 +1,33 @@
{
"name": "sd-park-pass-locator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"deploy": "./deploy.sh",
"deploy:nu": "./deploy.nu"
},
"dependencies": {
"@humanwhocodes/config-array": "^0.13.0",
"@humanwhocodes/object-schema": "^2.0.3",
"glob": "^11.0.3",
"leaflet": "^1.9.4",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4.2.1",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/leaflet": "^1.9.12",
"@types/node": "^20.19.7",
"@types/react": "^18.3.23",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"typescript": "^5.8.3"
}
}