Template
1
0

feat: initial boilerplate

This commit is contained in:
2025-08-11 20:45:41 +02:00
parent d98524254f
commit 1215a98afc
148 changed files with 6935 additions and 2060 deletions

34
apps/react/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/react-query": "5",
"@tanstack/react-router": "1",
"@valkyr/db": "1",
"@valkyr/event-emitter": "npm:@jsr/valkyr__event-emitter@1",
"fast-equals": "5",
"react": "19",
"react-dom": "19"
},
"devDependencies": {
"@eslint/js": "9",
"@types/react": "19",
"@types/react-dom": "19",
"@vitejs/plugin-react": "4",
"eslint": "9",
"eslint-plugin-react-hooks": "5",
"eslint-plugin-react-refresh": "0.4",
"globals": "16",
"typescript": "5",
"typescript-eslint": "8",
"vite": "7"
}
}