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

Configure Feed

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

at d78067560633b4f75448bb7d0d80f28e42691de3 94 lines 1.5 kB view raw
1{ 2 "$schema": "https://turbo.build/schema.json", 3 "tasks": { 4 "install": { 5 "dependsOn": [ 6 "^install" 7 ] 8 }, 9 "build": { 10 "dependsOn": [ 11 "^build" 12 ], 13 "outputs": [ 14 "./dist/**" 15 ] 16 }, 17 "build:prod": { 18 "dependsOn": [ 19 "^build:prod" 20 ], 21 "outputs": [ 22 "./dist/**" 23 ] 24 }, 25 "dev": { 26 "persistent": true, 27 "cache": false 28 }, 29 "prod": { 30 "persistent": true, 31 "cache": false 32 }, 33 "sync": { 34 "persistent": true, 35 "cache": false 36 }, 37 "genres": { 38 "persistent": true, 39 "cache": false 40 }, 41 "db:migrate": { 42 "cache": false 43 }, 44 "pkl:eval": { 45 "cache": false 46 }, 47 "pkl:gen": { 48 "cache": false 49 }, 50 "prod:all": { 51 "cache": false 52 }, 53 "start": { 54 "persistent": true, 55 "cache": false 56 }, 57 "android": { 58 "persistent": true, 59 "cache": false 60 }, 61 "ios": { 62 "persistent": true, 63 "cache": false 64 }, 65 "storybook": { 66 "persistent": true, 67 "cache": false 68 }, 69 "lint": { 70 "dependsOn": [ 71 "^lint" 72 ], 73 "outputs": [] 74 }, 75 "format": { 76 "dependsOn": [ 77 "^format" 78 ], 79 "outputs": [] 80 }, 81 "adb:reverse": { 82 "persistent": true, 83 "cache": false 84 }, 85 "test": { 86 "dependsOn": [ 87 "^test" 88 ], 89 "outputs": [ 90 "./coverage/**" 91 ] 92 } 93 } 94}