forked from
samuel.fm/statusphere-react
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/identity": "^0.4.0",
22 "@atproto/jwk-jose": "0.1.2-rc.0",
23 "@atproto/lexicon": "0.4.1-rc.0",
24 "@atproto/oauth-client-node": "0.0.2-rc.2",
25 "@atproto/repo": "0.4.2-rc.0",
26 "@atproto/syntax": "^0.3.0",
27 "@atproto/xrpc-server": "0.5.4-rc.0",
28 "better-sqlite3": "^11.1.2",
29 "cors": "^2.8.5",
30 "dotenv": "^16.4.5",
31 "envalid": "^8.0.0",
32 "express": "^4.19.2",
33 "express-rate-limit": "^7.2.0",
34 "helmet": "^7.1.0",
35 "http-status-codes": "^2.3.0",
36 "iron-session": "^8.0.2",
37 "kysely": "^0.27.4",
38 "multiformats": "^9.9.0",
39 "pino": "^9.3.2",
40 "pino-http": "^10.0.0",
41 "uhtml": "^4.5.9"
42 },
43 "devDependencies": {
44 "@atproto/lex-cli": "^0.4.1",
45 "@biomejs/biome": "1.8.3",
46 "@types/better-sqlite3": "^7.6.11",
47 "@types/cors": "^2.8.17",
48 "@types/express": "^4.17.21",
49 "lint-staged": "^15.2.2",
50 "pino-pretty": "^11.0.0",
51 "rimraf": "^5.0.0",
52 "supertest": "^7.0.0",
53 "ts-node": "^10.9.2",
54 "tsup": "^8.0.2",
55 "tsx": "^4.7.2",
56 "typescript": "^5.4.4",
57 "vite-tsconfig-paths": "^4.3.2",
58 "vitest": "^2.0.0"
59 },
60 "lint-staged": {
61 "*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
62 "biome check --apply --no-errors-on-unmatched"
63 ]
64 },
65 "tsup": {
66 "entry": [
67 "src",
68 "!src/**/__tests__/**",
69 "!src/**/*.test.*"
70 ],
71 "splitting": false,
72 "sourcemap": true,
73 "clean": true
74 }
75}