Jotzy/frontend/package.json
James Fitzsimons 45dcbdaee9 Add ZIP import page and folder collapse UI
- Add a ZIP-based import page that builds a folder/note tree from a ZIP
  and creates items via the API
- Introduce collapsible folder UI with RenderFolder and updates to
  DroppableFolder to support collapsing
- Wire a new /import route into App and add jszip as a frontend
  dependency
2025-11-26 21:38:58 +00:00

32 lines
828 B
JSON

{
"name": "note-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@mdxeditor/editor": "^3.49.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"axios": "^1.13.2",
"jszip": "^3.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.9.6",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@catppuccin/tailwindcss": "^1.0.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"vite": "^5.4.21",
"vite-plugin-svgr": "^4.5.0"
}
}