WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 28 lines 655 B view raw
1{ 2 "$schema": "https://turborepo.dev/schema.json", 3 "tasks": { 4 "build": { 5 "dependsOn": ["^build"], 6 "inputs": ["src/**", "lexicons/**", "scripts/**", "package.json", "tsconfig.json"], 7 "outputs": ["dist/**"] 8 }, 9 "dev": { 10 "dependsOn": ["^build"], 11 "cache": false, 12 "persistent": true 13 }, 14 "lint": { 15 "dependsOn": ["^build"] 16 }, 17 "lint:fix": { 18 "cache": false 19 }, 20 "test": { 21 "dependsOn": ["^build"], 22 "env": ["DATABASE_URL", "LOG_LEVEL", "BACKFILL_RATE_LIMIT", "BACKFILL_CONCURRENCY", "BACKFILL_CURSOR_MAX_AGE_HOURS"] 23 }, 24 "clean": { 25 "cache": false 26 } 27 } 28}