lume/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"name": "lume",
"private": true,
2023-04-15 02:08:10 +00:00
"version": "0.2.5",
2023-02-21 07:58:47 +00:00
"scripts": {
2023-04-22 01:53:18 +00:00
"dev": "vite",
"build": "vite build",
2023-02-25 08:45:27 +00:00
"tauri": "tauri",
"add-migrate": "cd src-tauri/ && sqlx migrate add",
2023-02-25 08:45:27 +00:00
"prepare": "husky install"
},
"lint-staged": {
2023-04-20 02:47:02 +00:00
"**/*": "prettier --write --ignore-unknown",
"**/*.{js,ts,jsx,tsx}": "eslint --fix"
2023-02-21 07:58:47 +00:00
},
"dependencies": {
2023-04-12 08:51:17 +00:00
"@radix-ui/react-alert-dialog": "^1.0.3",
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-popover": "^1.0.5",
2023-03-19 10:16:36 +00:00
"@radix-ui/react-tabs": "^1.0.3",
2023-04-12 03:03:16 +00:00
"@radix-ui/react-tooltip": "^1.0.5",
2023-04-11 02:02:39 +00:00
"@rehooks/local-storage": "^2.4.4",
2023-04-21 06:58:46 +00:00
"@supabase/supabase-js": "^2.21.0",
2023-02-21 07:58:47 +00:00
"@tauri-apps/api": "^1.2.0",
2023-03-16 08:23:52 +00:00
"dayjs": "^1.11.7",
"destr": "^1.2.2",
2023-04-14 08:54:33 +00:00
"iconoir-react": "^6.6.0",
2023-04-15 02:06:29 +00:00
"jotai": "^2.0.4",
2023-03-15 03:51:32 +00:00
"nostr-relaypool": "^0.5.18",
2023-04-19 03:13:34 +00:00
"nostr-tools": "^1.10.0",
2023-02-21 07:58:47 +00:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-03-31 08:10:16 +00:00
"react-hook-form": "^7.43.9",
"react-loading-skeleton": "^3.2.1",
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-04-19 01:50:32 +00:00
"react-virtuoso": "^4.2.2",
"swr": "^2.1.3",
2023-04-23 02:56:31 +00:00
"tauri-plugin-sql-api": "github:tauri-apps/tauri-plugin-sql"
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-04-21 06:58:46 +00:00
"@types/node": "^18.15.13",
"@types/react": "^18.0.37",
2023-02-21 07:58:47 +00:00
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
2023-04-22 01:53:18 +00:00
"@vitejs/plugin-react-swc": "^3.3.0",
2023-03-10 02:30:13 +00:00
"autoprefixer": "^10.4.14",
2023-04-20 06:34:46 +00:00
"cross-env": "^7.0.3",
2023-04-05 03:00:16 +00:00
"csstype": "^3.1.2",
2023-04-15 02:06:29 +00:00
"encoding": "^0.1.13",
"eslint": "^8.38.0",
2023-04-07 08:26:41 +00:00
"eslint-config-next": "^13.3.0",
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-04-15 02:06:29 +00:00
"lint-staged": "^13.2.1",
2023-04-21 06:58:46 +00:00
"postcss": "^8.4.23",
2023-03-25 10:21:41 +00:00
"prettier": "^2.8.7",
2023-04-07 08:26:41 +00:00
"prettier-plugin-tailwindcss": "^0.2.7",
2023-02-21 07:58:47 +00:00
"prop-types": "^15.8.1",
2023-03-31 08:10:16 +00:00
"tailwindcss": "^3.3.1",
2023-04-21 06:58:46 +00:00
"typescript": "^4.9.5",
2023-04-22 01:53:18 +00:00
"vite": "^4.3.1",
"vite-plugin-ssr": "^0.4.115",
"vite-tsconfig-paths": "^4.2.0",
2023-04-21 06:58:46 +00:00
"ws": "^8.13.0"
2023-02-21 07:58:47 +00:00
}
}