A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
0

Configure Feed

Select the types of activity you want to include in your feed.

rocksky / apps / web / package.json
4.0 kB 120 lines
1{ 2 "name": "@rocksky/web", 3 "private": true, 4 "version": "0.0.0", 5 "type": "module", 6 "scripts": { 7 "dev": "vite --port 5174", 8 "prod": "vite --mode prod", 9 "build": "tsc -b && vite build", 10 "build:prod": "tsc -b && vite build --mode prod", 11 "lint": "biome lint src", 12 "preview": "bun run build && wrangler pages dev ./dist", 13 "deploy": "bun run build && wrangler pages deploy ./dist", 14 "storybook": "storybook dev -p 6006", 15 "build-storybook": "storybook build", 16 "format": "biome format src" 17 }, 18 "dependencies": { 19 "@dnd-kit/core": "^6.3.1", 20 "@dnd-kit/sortable": "^10.0.0", 21 "@dnd-kit/utilities": "^3.2.2", 22 "@emotion/react": "^11.14.0", 23 "@emotion/styled": "^11.14.0", 24 "@hookform/resolvers": "^4.0.0", 25 "@iconify-json/teenyicons": "^1.2.2", 26 "@styled-icons/bootstrap": "^10.47.0", 27 "@styled-icons/boxicons-logos": "^10.47.0", 28 "@styled-icons/boxicons-regular": "^10.47.0", 29 "@styled-icons/entypo": "^10.46.0", 30 "@styled-icons/evaicons-solid": "^10.46.0", 31 "@styled-icons/evil": "^10.46.0", 32 "@styled-icons/fa-solid": "^10.47.0", 33 "@styled-icons/feather": "^10.47.0", 34 "@styled-icons/fluentui-system-filled": "^10.47.0", 35 "@styled-icons/fluentui-system-regular": "^10.47.0", 36 "@styled-icons/ionicons-outline": "^10.46.0", 37 "@styled-icons/ionicons-sharp": "^10.46.0", 38 "@styled-icons/ionicons-solid": "^10.46.0", 39 "@styled-icons/material": "^10.47.0", 40 "@styled-icons/remix-fill": "^10.46.0", 41 "@styled-icons/simple-icons": "^10.46.0", 42 "@styled-icons/zondicons": "^10.46.0", 43 "@tabler/icons-react": "^3.36.0", 44 "@tailwindcss/vite": "^4.1.4", 45 "@tanstack/react-query": "^5.76.0", 46 "@tanstack/react-query-devtools": "^5.76.0", 47 "@tanstack/react-router": "^1.125.4", 48 "@tanstack/react-router-devtools": "^1.125.4", 49 "@tanstack/react-table": "^8.21.2", 50 "@tanstack/zod-adapter": "^1.125.4", 51 "@types/numeral": "^2.0.5", 52 "@vitest/ui": "^3.0.4", 53 "axios": "^1.7.9", 54 "baseui": "15.0.0", 55 "consola": "^3.4.2", 56 "copy-to-clipboard": "^3.3.3", 57 "date-fns": "^4.1.0", 58 "dayjs": "^1.11.13", 59 "effect": "^3.14.22", 60 "html-to-image": "^1.11.13", 61 "i18next": "^24.2.2", 62 "jotai": "^2.11.3", 63 "jotai-effect": "^2.0.1", 64 "lodash": "^4.17.21", 65 "numeral": "^2.0.6", 66 "posthog-js": "^1.234.6", 67 "ramda": "^0.32.0", 68 "react": "^18.3.1", 69 "react-content-loader": "^7.0.2", 70 "react-dom": "^18.3.1", 71 "react-dropzone": "^15.0.0", 72 "react-hook-form": "^7.54.2", 73 "react-i18next": "^15.4.0", 74 "react-lazy-load-image-component": "^1.6.3", 75 "recharts": "^2.15.1", 76 "rockbox-wasm": "^0.1.9", 77 "styletron-engine-monolithic": "^1.0.0", 78 "styletron-react": "^6.1.1", 79 "swr": "^2.3.0", 80 "tailwindcss": "^4.1.4", 81 "vitest": "^3.0.4", 82 "zod": "^3.24.2" 83 }, 84 "devDependencies": { 85 "@biomejs/biome": "^2.2.3", 86 "@chromatic-com/storybook": "^3.2.4", 87 "@cloudflare/workers-types": "^4.20250124.3", 88 "@eslint/js": "^9.17.0", 89 "@storybook/addon-essentials": "^8.5.2", 90 "@storybook/addon-interactions": "^8.5.2", 91 "@storybook/addon-onboarding": "^8.5.2", 92 "@storybook/blocks": "^8.5.2", 93 "@storybook/react": "^8.5.2", 94 "@storybook/react-vite": "^8.5.2", 95 "@storybook/test": "^8.5.2", 96 "@tanstack/router-plugin": "^1.125.4", 97 "@types/lodash": "^4.17.15", 98 "@types/ramda": "^0.31.1", 99 "@types/react": "^18.3.18", 100 "@types/react-dom": "^18.3.5", 101 "@types/react-lazy-load-image-component": "^1.6.5", 102 "@vitejs/plugin-react-swc": "^3.5.0", 103 "eslint": "^9.17.0", 104 "eslint-plugin-react-hooks": "^5.0.0", 105 "eslint-plugin-react-refresh": "^0.4.16", 106 "eslint-plugin-storybook": "^0.11.2", 107 "globals": "^15.14.0", 108 "storybook": "^8.5.2", 109 "typescript": "~5.6.2", 110 "typescript-eslint": "^8.18.2", 111 "vite": "^6.0.5", 112 "vite-plugin-pwa": "^1.3.0", 113 "wrangler": "^3.106.0" 114 }, 115 "eslintConfig": { 116 "extends": [ 117 "plugin:storybook/recommended" 118 ] 119 } 120}