Initial project scaffolding

This commit is contained in:
Axel Meyer
2026-04-07 10:09:51 +00:00
commit 5a19864fb5
9 changed files with 4016 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "hexifyer",
"version": "0.1.0",
"description": "Hex grid overlay tool for fantasy maps",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch server/index.ts\"",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"server": "tsx server/index.ts",
"pipeline:tiles": "tsx pipeline/generate-tiles.ts"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/leaflet": "^1.9.21",
"sharp": "^0.33.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"leaflet": "^1.9.4",
"sql.js": "^1.14.1"
}
}