the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

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

at 8a3a1fc3e9be24e8cce58526f02b5b8f7d9482cd 59 lines 1.5 kB view raw
1{ 2 "name": "@statusphere/appview", 3 "version": "0.0.1", 4 "description": "Statusphere AppView backend", 5 "author": "", 6 "license": "MIT", 7 "main": "dist/index.js", 8 "private": true, 9 "scripts": { 10 "dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty", 11 "build": "tsup", 12 "start": "node dist/index.js", 13 "clean": "rimraf dist coverage", 14 "format": "prettier --write src", 15 "typecheck": "tsc --noEmit" 16 }, 17 "dependencies": { 18 "@atproto/api": "^0.14.7", 19 "@atproto/common": "^0.4.8", 20 "@atproto/identity": "^0.4.6", 21 "@atproto/lexicon": "^0.4.7", 22 "@atproto/oauth-client-node": "^0.2.11", 23 "@atproto/sync": "^0.1.15", 24 "@atproto/syntax": "^0.3.3", 25 "@atproto/xrpc-server": "^0.7.11", 26 "@statusphere/lexicon": "workspace:*", 27 "better-sqlite3": "^11.8.1", 28 "cors": "^2.8.5", 29 "dotenv": "^16.4.7", 30 "envalid": "^8.0.0", 31 "express": "^4.21.2", 32 "iron-session": "^8.0.4", 33 "kysely": "^0.27.5", 34 "multiformats": "^13.3.2", 35 "pino": "^9.6.0" 36 }, 37 "devDependencies": { 38 "@types/better-sqlite3": "^7.6.12", 39 "@types/cors": "^2.8.17", 40 "@types/express": "^5.0.0", 41 "@types/node": "^22.13.8", 42 "@types/ws": "^8.5.14", 43 "pino-pretty": "^13.0.0", 44 "ts-node": "^10.9.2", 45 "tsup": "^8.4.0", 46 "tsx": "^4.19.3", 47 "typescript": "^5.8.2" 48 }, 49 "tsup": { 50 "entry": [ 51 "src", 52 "!src/**/__tests__/**", 53 "!src/**/*.test.*" 54 ], 55 "splitting": false, 56 "sourcemap": true, 57 "clean": true 58 } 59}