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 "lexgen": "lex gen-server ./src/lexicon ./lexicons/*",
14 "clean": "rimraf dist coverage",
15 "lint": "biome check src/",
16 "lint:fix": "biome check src/ --fix",
17 "format": "biome format src/",
18 "test": "vitest run"
19 },
20 "dependencies": {
21 "@atproto/lexicon": "^0.4.0",
22 "@atproto/repo": "^0.4.1",
23 "@atproto/syntax": "^0.3.0",
24 "@atproto/xrpc-server": "^0.5.3",
25 "better-sqlite3": "^11.1.2",
26 "cors": "^2.8.5",
27 "dotenv": "^16.4.5",
28 "envalid": "^8.0.0",
29 "express": "^4.19.2",
30 "express-rate-limit": "^7.2.0",
31 "helmet": "^7.1.0",
32 "http-status-codes": "^2.3.0",
33 "kysely": "^0.27.4",
34 "multiformats": "^9.9.0",
35 "pino": "^9.3.2",
36 "pino-http": "^10.0.0"
37 },
38 "devDependencies": {
39 "@atproto/lex-cli": "^0.4.1",
40 "@biomejs/biome": "1.8.3",
41 "@types/better-sqlite3": "^7.6.11",
42 "@types/cors": "^2.8.17",
43 "@types/express": "^4.17.21",
44 "lint-staged": "^15.2.2",
45 "pino-pretty": "^11.0.0",
46 "rimraf": "^5.0.0",
47 "supertest": "^7.0.0",
48 "tsup": "^8.0.2",
49 "tsx": "^4.7.2",
50 "typescript": "^5.4.4",
51 "vite-tsconfig-paths": "^4.3.2",
52 "vitest": "^2.0.0"
53 },
54 "lint-staged": {
55 "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
56 "biome check --apply --no-errors-on-unmatched"
57 ]
58 },
59 "tsup": {
60 "entry": [
61 "src",
62 "!src/**/__tests__/**",
63 "!src/**/*.test.*"
64 ],
65 "splitting": false,
66 "sourcemap": true,
67 "clean": true
68 }
69}