forked from
samuel.fm/statusphere-react
the statusphere demo reworked into a vite/react app in a monorepo
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 "lexgen": "lex gen-server ./src/lexicons ../../lexicons/xyz/statusphere/* ../../lexicons/com/atproto/*/* ../../lexicons/app/bsky/*/* --yes && pnpm format",
14 "clean": "rimraf dist coverage",
15 "format": "prettier --write src",
16 "typecheck": "tsc --noEmit"
17 },
18 "dependencies": {
19 "@atproto/api": "^0.14.7",
20 "@atproto/common": "^0.4.8",
21 "@atproto/identity": "^0.4.6",
22 "@atproto/lexicon": "^0.4.7",
23 "@atproto/oauth-client-node": "^0.2.11",
24 "@atproto/sync": "^0.1.15",
25 "@atproto/syntax": "^0.3.3",
26 "@atproto/xrpc-server": "^0.7.11",
27 "@statusphere/lexicon": "workspace:*",
28 "better-sqlite3": "^11.8.1",
29 "compression": "^1.8.0",
30 "cors": "^2.8.5",
31 "dotenv": "^16.4.7",
32 "envalid": "^8.0.0",
33 "express": "^4.21.2",
34 "iron-session": "^8.0.4",
35 "kysely": "^0.27.5",
36 "multiformats": "^13.3.2",
37 "pino": "^9.6.0",
38 "ws": "^8.18.1"
39 },
40 "devDependencies": {
41 "@atproto/lex-cli": "^0.6.1",
42 "@types/better-sqlite3": "^7.6.12",
43 "@types/compression": "^1.7.5",
44 "@types/cors": "^2.8.17",
45 "@types/express": "^5.0.0",
46 "@types/node": "^22.13.8",
47 "@types/ws": "^8.5.14",
48 "pino-pretty": "^13.0.0",
49 "ts-node": "^10.9.2",
50 "tsup": "^8.4.0",
51 "tsx": "^4.19.3",
52 "typescript": "^5.8.2"
53 },
54 "tsup": {
55 "entry": [
56 "src",
57 "!src/**/__tests__/**",
58 "!src/**/*.test.*"
59 ],
60 "splitting": false,
61 "sourcemap": true,
62 "clean": true
63 }
64}