working version

This commit is contained in:
Matteo Rosati
2026-01-16 10:14:55 +01:00
commit 0cb5dc9bab
26 changed files with 1269 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"build": "bun build ./src/index.html --outdir=dist --sourcemap --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
"start": "NODE_ENV=production bun src/index.ts"
},
"dependencies": {
"leaflet": "^1.9.4",
"react": "^19",
"react-dom": "^19",
"react-leaflet": "^5.0.0",
"recharts": "^3.6.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/leaflet": "^1.9.21",
"@types/react": "^19",
"@types/react-dom": "^19"
}
}