Implement real GIS data import and PostGIS spatial queries

This commit is contained in:
(jenkins)
2026-03-16 20:32:22 +00:00
parent e764efb189
commit ad07a70125
4 changed files with 312 additions and 56 deletions
+8 -6
View File
@@ -6,16 +6,18 @@
"scripts": {
"start": "node app/server.js",
"dev": "nodemon app/server.js",
"test": "jest"
"test": "jest",
"seed-data": "node scripts/import_cities.js"
},
"dependencies": {
"express": "^5.2.1",
"axios": "^1.13.6",
"cors": "^2.8.6",
"pg": "^8.20.0",
"dotenv": "^17.3.1"
"dotenv": "^17.3.1",
"express": "^5.2.1",
"pg": "^8.20.0"
},
"devDependencies": {
"nodemon": "^3.1.14",
"jest": "^30.3.0"
"jest": "^30.3.0",
"nodemon": "^3.1.14"
}
}