lume/package.json

98 lines
3.2 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
2023-07-04 06:24:42 +00:00
"name": "lume",
"private": true,
2023-07-17 08:21:56 +00:00
"version": "1.1.0",
2023-07-04 06:24:42 +00:00
"scripts": {
"dev": "vite",
"build": "vite build",
"tauri": "tauri",
"add-migrate": "cd src-tauri/ && sqlx migrate add",
"prepare": "husky install",
"lint": "eslint ./src --fix",
2023-07-23 02:16:29 +00:00
"format": "prettier ./src --write",
"dep-update": "pnpm update && cd src-tauri/ && cargo update"
2023-07-04 06:24:42 +00:00
},
"lint-staged": {
2023-07-04 08:40:18 +00:00
"**/*.{ts, tsx}": "eslint --fix",
"**/*.{ts, tsx, css, md, html, json}": "prettier --cache --write"
2023-07-04 06:24:42 +00:00
},
"dependencies": {
"@headlessui/react": "^1.7.15",
2023-07-16 08:46:01 +00:00
"@nostr-dev-kit/ndk": "^0.7.7",
2023-07-11 07:27:14 +00:00
"@nostr-fetch/adapter-ndk": "^0.11.0",
2023-07-23 02:16:29 +00:00
"@radix-ui/react-dialog": "^1.0.4",
2023-07-04 06:24:42 +00:00
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-tooltip": "^1.0.6",
2023-07-22 10:35:04 +00:00
"@tanstack/react-query": "^4.32.0",
"@tanstack/react-query-devtools": "^4.32.0",
2023-07-04 06:24:42 +00:00
"@tanstack/react-virtual": "3.0.0-beta.54",
"@tauri-apps/api": "^1.4.0",
2023-07-21 11:07:17 +00:00
"@tiptap/extension-image": "^2.0.4",
2023-07-21 09:16:41 +00:00
"@tiptap/extension-mention": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@tiptap/suggestion": "^2.0.4",
2023-07-04 06:24:42 +00:00
"cheerio": "1.0.0-rc.12",
2023-07-05 01:12:57 +00:00
"dayjs": "^1.11.9",
2023-07-04 06:24:42 +00:00
"destr": "^1.2.2",
2023-07-20 01:57:58 +00:00
"framer-motion": "^10.13.0",
2023-07-04 06:24:42 +00:00
"get-urls": "^11.0.0",
2023-07-22 08:32:34 +00:00
"html-to-text": "^9.0.5",
2023-07-04 06:24:42 +00:00
"immer": "^10.0.2",
"light-bolt11-decoder": "^3.0.0",
"nostr-fetch": "^0.12.1",
"nostr-tools": "^1.13.0",
2023-07-04 06:24:42 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
2023-07-05 01:12:57 +00:00
"react-hotkeys-hook": "^4.4.1",
2023-07-15 09:03:31 +00:00
"react-markdown": "^8.0.7",
2023-07-04 06:24:42 +00:00
"react-player": "^2.12.0",
"react-router-dom": "^6.14.2",
2023-07-04 06:24:42 +00:00
"react-string-replace": "^1.1.1",
"react-virtuoso": "^4.4.1",
2023-07-15 09:03:31 +00:00
"remark-gfm": "^3.0.1",
2023-07-17 08:21:56 +00:00
"tailwind-merge": "^1.14.0",
2023-07-04 06:24:42 +00:00
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1",
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql",
2023-07-09 00:55:23 +00:00
"tauri-plugin-stronghold-api": "github:tauri-apps/tauri-plugin-stronghold#v1",
2023-07-22 08:32:34 +00:00
"tauri-plugin-upload-api": "github:tauri-apps/tauri-plugin-upload#v1",
2023-07-21 09:16:41 +00:00
"tippy.js": "^6.3.7",
2023-07-05 01:12:57 +00:00
"zustand": "^4.3.9"
2023-07-04 06:24:42 +00:00
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "^1.4.0",
2023-07-21 11:07:17 +00:00
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
2023-07-23 02:16:29 +00:00
"@types/node": "^18.17.0",
2023-07-15 05:20:09 +00:00
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
2023-07-04 06:24:42 +00:00
"@types/youtube-player": "^5.5.7",
2023-07-11 07:27:14 +00:00
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
2023-07-04 06:24:42 +00:00
"@vitejs/plugin-react-swc": "^3.3.2",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"csstype": "^3.1.2",
"encoding": "^0.1.13",
2023-07-16 08:46:01 +00:00
"eslint": "^8.45.0",
2023-07-04 06:24:42 +00:00
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
2023-07-21 11:07:17 +00:00
"eslint-plugin-react": "^7.33.0",
2023-07-04 06:24:42 +00:00
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
2023-07-22 10:35:04 +00:00
"postcss": "^8.4.27",
2023-07-04 06:24:42 +00:00
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"prop-types": "^15.8.1",
2023-07-15 05:20:09 +00:00
"tailwindcss": "^3.3.3",
2023-07-04 06:24:42 +00:00
"typescript": "^4.9.5",
2023-07-21 11:07:17 +00:00
"vite": "^4.4.6",
2023-07-04 06:24:42 +00:00
"vite-plugin-top-level-await": "^1.3.1",
"vite-tsconfig-paths": "^4.2.0"
}
2023-02-21 07:58:47 +00:00
}