forked from
samuel.fm/statusphere-react
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 "@atproto/xrpc": "^0.6.9",
18 "@statusphere/lexicon": "workspace:*",
19 "@tailwindcss/vite": "^4.0.9",
20 "@tanstack/react-query": "^5.66.11",
21 "iron-session": "^8.0.4",
22 "react": "^19.0.0",
23 "react-dom": "^19.0.0",
24 "react-router-dom": "^7.2.0"
25 },
26 "devDependencies": {
27 "@types/react": "^19.0.10",
28 "@types/react-dom": "^19.0.4",
29 "@typescript-eslint/eslint-plugin": "^8.25.0",
30 "@typescript-eslint/parser": "^8.25.0",
31 "@vitejs/plugin-react": "^4.3.4",
32 "autoprefixer": "^10.4.20",
33 "babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
34 "eslint": "^9.21.0",
35 "eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
36 "eslint-plugin-react-hooks": "^5.2.0",
37 "eslint-plugin-react-refresh": "^0.4.19",
38 "postcss": "^8.5.3",
39 "tailwindcss": "^4.0.9",
40 "typescript": "^5.8.2",
41 "vite": "^6.2.0",
42 "vite-tsconfig-paths": "^5.1.4"
43 }
44}