fix: make dev scripts cross-platform compatible

Former-commit-id: 9802fe55a3
This commit is contained in:
anoracleofra-code
2026-03-08 14:20:28 -06:00
parent 5cefd8f8d5
commit 80fedc103a
+3 -2
View File
@@ -3,14 +3,15 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"cd ../backend && python -m uvicorn main:app --reload\"",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "next dev",
"dev:backend": "cd ../backend && venv\\Scripts\\python.exe main.py",
"dev:backend": "cd ../backend && python -m uvicorn main:app --reload",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@mapbox/point-geometry": "^1.1.0",
"@types/leaflet": "^1.9.21",
"@types/mapbox-gl": "^3.4.1",
"framer-motion": "^12.34.3",