lume/package.json

72 lines
1.9 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
2023-06-28 10:23:36 +00:00
"name": "lume",
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"tauri": "tauri",
"add-migrate": "cd src-tauri/ && sqlx migrate add",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": "rome check --apply"
},
"dependencies": {
"@floating-ui/react": "^0.23.1",
"@headlessui/react": "^1.7.15",
2023-06-30 09:36:03 +00:00
"@nostr-dev-kit/ndk": "0.6.0",
2023-07-02 08:12:07 +00:00
"@radix-ui/react-popover": "^1.0.6",
2023-06-29 03:37:35 +00:00
"@radix-ui/react-tooltip": "^1.0.6",
2023-06-28 10:23:36 +00:00
"@tanstack/react-query": "^4.29.19",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@tauri-apps/api": "^1.4.0",
"cheerio": "1.0.0-rc.12",
"dayjs": "^1.11.8",
"destr": "^1.2.2",
"framer-motion": "^10.12.17",
"get-urls": "^11.0.0",
"immer": "^10.0.2",
"light-bolt11-decoder": "^3.0.0",
2023-06-30 09:36:03 +00:00
"nostr-tools": "^1.12.1",
2023-06-28 10:23:36 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-06-29 03:37:35 +00:00
"react-hook-form": "^7.45.1",
2023-06-28 10:23:36 +00:00
"react-hotkeys-hook": "^4.4.0",
"react-player": "^2.12.0",
"react-router-dom": "^6.14.0",
"react-string-replace": "^1.1.1",
"react-virtuoso": "^4.3.11",
"slate": "^0.94.1",
"slate-history": "^0.93.0",
"slate-react": "^0.94.2",
"tailwind-merge": "^1.13.2",
2023-07-03 04:49:49 +00:00
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1",
2023-06-28 10:23:36 +00:00
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql",
"zustand": "^4.3.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "^1.4.0",
"@types/node": "^18.16.18",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/youtube-player": "^5.5.7",
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"csstype": "^3.1.2",
"encoding": "^0.1.13",
"husky": "^8.0.3",
2023-06-29 03:37:35 +00:00
"lint-staged": "^13.2.3",
2023-06-28 10:23:36 +00:00
"postcss": "^8.4.24",
"prop-types": "^15.8.1",
"rome": "12.1.0",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vite-plugin-top-level-await": "^1.3.1",
"vite-tsconfig-paths": "^4.2.0"
}
2023-02-21 07:58:47 +00:00
}