first commit

This commit is contained in:
2025-01-06 12:59:58 +01:00
commit 0826229c1b
19 changed files with 6576 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src",
"format": "prettier --write ./src"
},
"dependencies": {
"react": "^18.3.0",
"react-admin": "^5.4.0",
"react-dom": "^18.3.0",
"ra-data-json-server": "^5.4.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.60.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@types/node": "^20.10.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.0.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^5.3.5"
},
"name": "test-admin"
}