Add package.json for client application with dependencies and scripts

This commit is contained in:
MayaTheShy
2026-03-21 16:42:54 -04:00
parent 725f60aba6
commit cf7f443e42

22
web/client/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "inventory-manager-client",
"version": "1.0.0",
"description": "CC:Tweaked Inventory Manager - Web Dashboard",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.0.8"
}
}