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