feat: Add Biome configuration and update project settings for improved development experience. adds devcontainer to satisfy #14

This commit is contained in:
GitHub Copilot
2025-05-01 16:29:36 -04:00
parent c9cdd83a58
commit fe5bd43f3a
6 changed files with 261 additions and 16 deletions

View File

@@ -8,7 +8,10 @@
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:coverage": "vitest run --coverage"
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --apply ."
},
"dependencies": {
"@astrojs/cloudflare": "^12.5.1",
@@ -22,10 +25,11 @@
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.1.2",
"supertest": "^7.1.0",
"vitest": "^3.1.2",
"wrangler": "^4.13.1"
}
}
}