the statusphere demo reworked into a vite/react app in a monorepo
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/syntax": "^0.3.0",
22 "@atproto/xrpc-server": "^0.5.3",
23 "better-sqlite3": "^11.1.2",
24 "cors": "^2.8.5",
25 "dotenv": "^16.4.5",
26 "envalid": "^8.0.0",
27 "express": "^4.19.2",
28 "express-rate-limit": "^7.2.0",
29 "helmet": "^7.1.0",
30 "http-status-codes": "^2.3.0",
31 "kysely": "^0.27.4",
32 "multiformats": "^9.9.0",
33 "pino-http": "^10.0.0"
34 },
35 "devDependencies": {
36 "@biomejs/biome": "1.8.3",
37 "@types/better-sqlite3": "^7.6.11",
38 "@types/cors": "^2.8.17",
39 "@types/express": "^4.17.21",
40 "lint-staged": "^15.2.2",
41 "pino-pretty": "^11.0.0",
42 "rimraf": "^5.0.0",
43 "supertest": "^7.0.0",
44 "tsup": "^8.0.2",
45 "tsx": "^4.7.2",
46 "typescript": "^5.4.4",
47 "vite-tsconfig-paths": "^4.3.2",
48 "vitest": "^2.0.0"
49 },
50 "lint-staged": {
51 "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": ["biome check --apply --no-errors-on-unmatched"]
52 },
53 "tsup": {
54 "entry": ["src", "!src/**/__tests__/**", "!src/**/*.test.*"],
55 "splitting": false,
56 "sourcemap": true,
57 "clean": true
58 }
59}