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 d6ebb4ef62f71b4b6b3f2cbd9ea2effc90545a5f 63 lines 1.6 kB view raw
1{ 2 "name": "atproto-example-app", 3 "version": "0.0.1", 4 "description": "", 5 "author": "", 6 "license": "MIT", 7 "main": "index.ts", 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 "lint": "biome check src/", 15 "lint:fix": "biome check src/ --fix", 16 "format": "biome format src/", 17 "test": "vitest run" 18 }, 19 "dependencies": { 20 "@atproto/repo": "^0.4.1", 21 "@atproto/xrpc-server": "^0.5.3", 22 "better-sqlite3": "^11.1.2", 23 "cors": "^2.8.5", 24 "dotenv": "^16.4.5", 25 "envalid": "^8.0.0", 26 "express": "^4.19.2", 27 "express-rate-limit": "^7.2.0", 28 "helmet": "^7.1.0", 29 "http-status-codes": "^2.3.0", 30 "kysely": "^0.27.4", 31 "pino-http": "^10.0.0" 32 }, 33 "devDependencies": { 34 "@biomejs/biome": "1.8.3", 35 "@types/better-sqlite3": "^7.6.11", 36 "@types/cors": "^2.8.17", 37 "@types/express": "^4.17.21", 38 "lint-staged": "^15.2.2", 39 "pino-pretty": "^11.0.0", 40 "rimraf": "^5.0.0", 41 "supertest": "^7.0.0", 42 "tsup": "^8.0.2", 43 "tsx": "^4.7.2", 44 "typescript": "^5.4.4", 45 "vite-tsconfig-paths": "^4.3.2", 46 "vitest": "^2.0.0" 47 }, 48 "lint-staged": { 49 "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [ 50 "biome check --apply --no-errors-on-unmatched" 51 ] 52 }, 53 "tsup": { 54 "entry": [ 55 "src", 56 "!src/**/__tests__/**", 57 "!src/**/*.test.*" 58 ], 59 "splitting": false, 60 "sourcemap": true, 61 "clean": true 62 } 63}