the statusphere demo reworked into a vite/react app in a monorepo
1{
2 "name": "@statusphere/client",
3 "private": true,
4 "version": "0.0.1",
5 "type": "module",
6 "scripts": {
7 "dev": "vite",
8 "build": "tsc && vite build",
9 "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10 "preview": "vite preview",
11 "start": "vite preview --port 3000",
12 "clean": "rimraf dist",
13 "typecheck": "tsc --noEmit"
14 },
15 "dependencies": {
16 "@atproto/api": "^0.14.7",
17 "@statusphere/lexicon": "workspace:*",
18 "@tailwindcss/vite": "^4.0.9",
19 "@tanstack/react-query": "^5.66.11",
20 "iron-session": "^8.0.4",
21 "react": "^19.0.0",
22 "react-dom": "^19.0.0",
23 "react-router-dom": "^7.2.0"
24 },
25 "devDependencies": {
26 "@types/react": "^19.0.10",
27 "@types/react-dom": "^19.0.4",
28 "@typescript-eslint/eslint-plugin": "^8.25.0",
29 "@typescript-eslint/parser": "^8.25.0",
30 "@vitejs/plugin-react": "^4.3.4",
31 "autoprefixer": "^10.4.20",
32 "babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
33 "eslint": "^9.21.0",
34 "eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
35 "eslint-plugin-react-hooks": "^5.2.0",
36 "eslint-plugin-react-refresh": "^0.4.19",
37 "postcss": "^8.5.3",
38 "tailwindcss": "^4.0.9",
39 "typescript": "^5.8.2",
40 "vite": "^6.2.0"
41 }
42}