chore: create a React app with Vite tool

Used the Vite build tool to create a React app, with TypeScript.

close: N25B-81
This commit is contained in:
Twirre Meulenbelt
2025-09-25 14:09:22 +02:00
parent f42f791862
commit f70330f546
16 changed files with 3780 additions and 81 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "pepperplus-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7"
}
}