feat(directory): add react assets

This commit is contained in:
Haoyu Xu
2023-01-16 19:14:39 -05:00
parent c31a5fcdf9
commit 5404c1ff52
13 changed files with 838 additions and 3 deletions

23
directory/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "directory",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"vite": "^4.0.0"
}
}