lume/package.json

72 lines
2.2 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"name": "lume",
"private": true,
2023-03-18 09:10:47 +00:00
"version": "0.2.0",
2023-02-21 07:58:47 +00:00
"scripts": {
"dev": "next dev -p 1420",
"build": "next build && next export -o dist",
2023-02-25 08:45:27 +00:00
"tauri": "tauri",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
2023-02-21 07:58:47 +00:00
},
"dependencies": {
2023-03-16 01:18:04 +00:00
"@radix-ui/react-collapsible": "^1.0.2",
2023-03-10 02:30:13 +00:00
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.5",
2023-03-19 10:16:36 +00:00
"@radix-ui/react-tabs": "^1.0.3",
"@rehooks/local-storage": "^2.4.4",
2023-03-21 02:58:06 +00:00
"@supabase/supabase-js": "^2.12.0",
2023-03-23 03:33:28 +00:00
"@tanstack/react-virtual": "3.0.0-beta.54",
2023-02-21 07:58:47 +00:00
"@tauri-apps/api": "^1.2.0",
2023-03-10 02:30:13 +00:00
"@uiw/react-markdown-preview": "^4.1.10",
2023-02-21 07:58:47 +00:00
"@uiw/react-md-editor": "^3.20.5",
"boring-avatars": "^1.7.0",
2023-03-16 08:23:52 +00:00
"dayjs": "^1.11.7",
"destr": "^1.2.2",
2023-02-24 14:10:40 +00:00
"framer-motion": "^9.1.7",
"jotai": "^2.0.3",
2023-03-10 02:30:13 +00:00
"next": "^13.2.4",
2023-02-21 07:58:47 +00:00
"next-remove-imports": "^1.0.10",
2023-03-15 03:51:32 +00:00
"nostr-relaypool": "^0.5.18",
2023-03-20 06:32:10 +00:00
"nostr-tools": "^1.7.5",
2023-02-21 07:58:47 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-03-20 06:32:10 +00:00
"react-hook-form": "^7.43.7",
2023-03-10 02:30:13 +00:00
"react-player": "^2.12.0",
2023-03-21 02:24:40 +00:00
"react-string-replace": "^1.1.0",
2023-02-21 07:58:47 +00:00
"react-virtuoso": "^4.1.0",
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql",
2023-02-26 11:01:28 +00:00
"unique-names-generator": "^4.7.1",
2023-03-15 03:51:32 +00:00
"ws": "^8.13.0"
2023-02-21 07:58:47 +00:00
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@tauri-apps/cli": "^1.2.3",
2023-02-26 02:01:19 +00:00
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
2023-03-21 02:58:06 +00:00
"@types/node": "^18.15.5",
2023-02-21 07:58:47 +00:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
2023-03-21 02:58:06 +00:00
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
2023-03-10 02:30:13 +00:00
"autoprefixer": "^10.4.14",
2023-02-21 07:58:47 +00:00
"csstype": "^3.1.1",
2023-03-15 03:51:32 +00:00
"eslint": "^8.36.0",
2023-03-10 02:30:13 +00:00
"eslint-config-next": "^13.2.4",
2023-03-21 02:58:06 +00:00
"eslint-config-prettier": "^8.8.0",
2023-02-21 07:58:47 +00:00
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
2023-02-26 02:01:19 +00:00
"husky": "^8.0.3",
2023-03-15 03:51:32 +00:00
"lint-staged": "^13.2.0",
2023-02-21 07:58:47 +00:00
"postcss": "^8.4.21",
"prettier": "^2.8.6",
2023-03-20 06:32:10 +00:00
"prettier-plugin-tailwindcss": "^0.2.5",
2023-02-21 07:58:47 +00:00
"prop-types": "^15.8.1",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
}
}