Web Start

This commit is contained in:
2025-09-27 01:53:22 -04:00
parent 3d71ec310a
commit 941d3ec49e
17 changed files with 654 additions and 0 deletions

28
web/package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start"
},
"dependencies": {
"@types/mapbox-gl": "^3.4.1",
"mapbox-gl": "^3.15.0",
"next": "15.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-map-gl": "^8.0.4"
},
"devDependencies": {
"@skeletonlabs/skeleton": "^3.2.2",
"@skeletonlabs/skeleton-react": "^1.4.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
}
}