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
4
fork

Configure Feed

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

at e749db1438a06bfdd8a9d9095f4d63a36cf9bf73 41 lines 1.1 kB view raw
1{ 2 "name": "@atbb/appview", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 "build": "tsc", 8 "dev": "tsx watch --env-file=../../.env src/index.ts", 9 "start": "node dist/index.js", 10 "lint": "tsc --noEmit", 11 "lint:fix": "oxlint --fix src/", 12 "test": "vitest run", 13 "clean": "rm -rf dist", 14 "db:generate": "drizzle-kit generate", 15 "db:migrate": "drizzle-kit migrate" 16 }, 17 "dependencies": { 18 "@atbb/atproto": "workspace:*", 19 "@atbb/logger": "workspace:*", 20 "@atbb/db": "workspace:*", 21 "@atbb/lexicon": "workspace:*", 22 "@atproto/api": "^0.15.0", 23 "@atproto/common": "^0.5.11", 24 "@atproto/common-web": "^0.4.0", 25 "@atproto/oauth-client-node": "^0.3.16", 26 "@hono/node-server": "^1.14.0", 27 "@skyware/jetstream": "^0.2.5", 28 "drizzle-kit": "^0.31.8", 29 "drizzle-orm": "^0.45.1", 30 "hono": "^4.7.0", 31 "postgres": "^3.4.8" 32 }, 33 "devDependencies": { 34 "@types/node": "^22.0.0", 35 "dotenv": "^17.3.1", 36 "tsx": "^4.0.0", 37 "typescript": "^5.7.0", 38 "vite": "^7.3.1", 39 "vitest": "^3.1.0" 40 } 41}