This commit is contained in:
Nikita
2024-08-27 16:08:47 +03:00
parent ba92771c40
commit e38c10af6b
33 changed files with 242 additions and 5 deletions

26
app/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "learn-anything",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@tauri-apps/api": ">=2.0.0-rc.0",
"@tauri-apps/plugin-shell": ">=2.0.0-rc.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"@tauri-apps/cli": ">=2.0.0-rc.0"
}
}