Initial React test app

This commit is contained in:
Min Zeya Phyo
2026-01-15 12:26:31 +06:30
commit 5bff2047c8
8 changed files with 208 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "react-test",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "serve -s dist -l 3000"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"serve": "^14.2.0",
"vite": "^5.0.0"
}
}