Initialize React app using create-vite

This commit is contained in:
Stephan
2022-09-29 20:32:27 +02:00
parent 0d149fdbcc
commit 227696e83b
10 changed files with 106 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"name": "detleph-components",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"typescript": "^4.6.4",
"vite": "^3.1.0"
}
}