note-app/notes/package.json

28 lines
603 B
JSON
Raw Permalink Normal View History

2024-11-19 20:52:58 -08:00
{
"name": "notes",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
2024-11-20 03:30:48 -08:00
"build": "tsc && vite build --jsx",
2024-11-19 20:52:58 -08:00
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.7",
"@tauri-apps/api": "^2",
2024-11-19 23:50:35 -08:00
"@tauri-apps/plugin-shell": "^2",
2024-11-20 11:47:16 -08:00
"lucide-react": "^0.460.0",
"quill": "2.0.2"
2024-11-19 20:52:58 -08:00
},
"devDependencies": {
"@tauri-apps/cli": "^2",
2024-11-20 03:30:48 -08:00
"@vitejs/plugin-react": "^4.2.1",
2024-11-19 20:52:58 -08:00
"vite": "^5.3.1",
"typescript": "^5.2.2"
}
}