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
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/db": "workspace:*",
20 "@atbb/lexicon": "workspace:*",
21 "@atproto/api": "^0.15.0",
22 "@atproto/common": "^0.5.11",
23 "@atproto/common-web": "^0.4.0",
24 "@atproto/oauth-client-node": "^0.3.16",
25 "@hono/node-server": "^1.14.0",
26 "@skyware/jetstream": "^0.2.5",
27 "drizzle-kit": "^0.31.8",
28 "drizzle-orm": "^0.45.1",
29 "hono": "^4.7.0",
30 "postgres": "^3.4.8"
31 },
32 "devDependencies": {
33 "@types/node": "^22.0.0",
34 "dotenv": "^17.3.1",
35 "tsx": "^4.0.0",
36 "typescript": "^5.7.0",
37 "vite": "^7.3.1",
38 "vitest": "^3.1.0"
39 }
40}