feat: scaffold vite react app and configure web package

This commit is contained in:
lila 2026-03-21 11:59:52 +01:00
parent a0f008be74
commit 1765923cb6
26 changed files with 1994 additions and 27 deletions

View file

@ -1,12 +1,26 @@
{
"name": "@glossa/web",
"version": "1.0.0",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@glossa/shared": "workspace:*"
"@glossa/shared": "workspace:*",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"jsdom": "^29.0.1"
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^29.0.1",
"vite": "^8.0.1"
}
}