chore: initial commit

This commit is contained in:
2026-03-04 13:21:16 -06:00
commit 449d8f96c7
17 changed files with 1086 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "blog_srjuggernaut_dev",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"prepare": "bun run ./.husky/install.mts"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@tanstack/react-router": "^1.163.3",
"@tanstack/react-start": "^1.166.1",
"@vitejs/plugin-react-swc": "^4.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}