fix: make dev scripts cross-platform compatible

Former-commit-id: 667bede9c9
This commit is contained in:
anoracleofra-code
2026-03-08 14:20:28 -06:00
parent f9a8a998c4
commit 775bc4adfe
+3 -2
View File
@@ -3,14 +3,15 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "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: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", "build": "next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"@mapbox/point-geometry": "^1.1.0",
"@types/leaflet": "^1.9.21", "@types/leaflet": "^1.9.21",
"@types/mapbox-gl": "^3.4.1", "@types/mapbox-gl": "^3.4.1",
"framer-motion": "^12.34.3", "framer-motion": "^12.34.3",