This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / package.json
5.8 kB 129 lines
1{ 2 "name": "semble", 3 "version": "1.0.0", 4 "description": "", 5 "main": "index.js", 6 "workspaces": [ 7 "src/types", 8 "src/webapp", 9 "src/packages/semble-pds-client" 10 ], 11 "directories": { 12 "doc": "docs" 13 }, 14 "scripts": { 15 "build:webapp": "npm run build:types && npm run build --workspace=semble-webapp", 16 "build:types": "npm run build --workspace=@semble/types", 17 "dev:types": "npm run dev --workspace=@semble/types", 18 "type-check": "tsc --noEmit", 19 "start": "node dist/index.js", 20 "worker:feeds": "node dist/workers/feed-worker.js", 21 "worker:search": "node dist/workers/search-worker.js", 22 "worker:firehose": "node dist/workers/firehose-worker.js", 23 "worker:notifications": "node dist/workers/notification-worker.js", 24 "worker:sync": "node dist/workers/sync-worker.js", 25 "test": "jest", 26 "test:unit": "jest --testPathIgnorePatterns='.integration.test.' --testPathIgnorePatterns='.e2e.test.'", 27 "test:integration": "jest --testPathPattern='.integration.test.'", 28 "test:integration:db": "jest --testPathPattern='.integration.test.' --testNamePattern='Drizzle'", 29 "test:integration:db:watch": "jest --watch --testPathPattern='.integration.test.' --testNamePattern='Drizzle'", 30 "test:integration:redis": "jest --testPathPattern='.integration.test.' --testNamePattern='BullMQ'", 31 "test:integration:redis:watch": "jest --watch --testPathPattern='.integration.test.' --testNamePattern='BullMQ'", 32 "test:e2e": "jest --testPathPattern='.e2e.test.' --testTimeout=300000", 33 "test:watch": "jest --watch", 34 "test:unit:watch": "jest --watch --testPathIgnorePatterns='.integration.test.' --testPathIgnorePatterns='.e2e.test.'", 35 "test:integration:watch": "jest --watch --testPathPattern='.integration.test.'", 36 "build": "tsup", 37 "build:check": "tsc --noEmit", 38 "build:watch": "tsc --watch", 39 "dev:app:inner": "dotenv -e .env.local -- concurrently -k -n TYPE,APP -c red,blue \"tsc --noEmit --watch\" \"tsup --watch --onSuccess='node dist/index.js'\"", 40 "dev:worker:feeds:inner": "dotenv -e .env.local -- concurrently -k -n WORKER -c green \"tsup --watch --onSuccess='node dist/workers/feed-worker.js'\"", 41 "dev:worker:search:inner": "dotenv -e .env.local -- concurrently -k -n WORKER -c yellow \"tsup --watch --onSuccess='node dist/workers/search-worker.js'\"", 42 "dev:mock": "USE_MOCK_PERSISTENCE=true USE_FAKE_PUBLISHERS=true USE_MOCK_AUTH=true USE_MOCK_VECTOR_DB=true npm run dev:app:inner", 43 "dev:mock:pub:auth": "USE_FAKE_PUBLISHERS=true USE_MOCK_AUTH=true npm run dev", 44 "dev": "bash ./scripts/dev-combined.sh", 45 "migrate": "node dist/scripts/migrate.js", 46 "lexgen": "lex gen-server ./src/modules/atproto/infrastructure/lexicon ./src/modules/atproto/infrastructure/lexicons/* ./src/modules/atproto/infrastructure/lexicons/at/margin/*", 47 "db:start": "docker run --name annos-postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=annotations -p 5432:5432 -d postgres:14", 48 "db:stop": "docker stop annos-postgres", 49 "db:remove": "docker rm annos-postgres", 50 "redis:start": "docker run --name annos-redis -p 6379:6379 -d redis:7-alpine", 51 "redis:stop": "docker stop annos-redis", 52 "redis:remove": "docker rm annos-redis", 53 "db:generate": "drizzle-kit generate --schema=./src/modules/**/*.sql.ts --out=./src/shared/infrastructure/database/migrations --dialect=postgresql", 54 "webapp:dev": "npm run build:types && cd src/webapp && npm run dev", 55 "webapp:extension:dev": "cd src/webapp && npm run dev:extension", 56 "webapp:build": "cd src/webapp && npm run build", 57 "webapp:start": "cd src/webapp && npm run start", 58 "webapp:storybook": "cd src/webapp && npm run storybook", 59 "format": "prettier --write .", 60 "format:check": "prettier --check .", 61 "lint": "eslint .", 62 "lint:fix": "eslint . --fix" 63 }, 64 "keywords": [], 65 "author": "", 66 "license": "ISC", 67 "dependencies": { 68 "@atproto/api": "^0.15.2", 69 "@atproto/common": "^0.4.10", 70 "@atproto/identity": "^0.4.9", 71 "@atproto/lexicon": "^0.4.10", 72 "@atproto/oauth-client-node": "^0.2.15", 73 "@atproto/sync": "^0.1.36", 74 "@atproto/syntax": "^0.4.0", 75 "@atproto/xrpc-server": "^0.7.15", 76 "@semble/types": "*", 77 "@upstash/vector": "^1.2.2", 78 "atpi": "^1.0.7", 79 "bullmq": "^5.56.8", 80 "cookie-parser": "^1.4.7", 81 "cors": "^2.8.5", 82 "dotenv": "^16.5.0", 83 "express": "^5.1.0", 84 "ioredis": "^5.6.1", 85 "jsonwebtoken": "^9.0.2", 86 "postgres": "^3.4.5", 87 "redlock": "^5.0.0-beta.2", 88 "uuid": "^11.1.0", 89 "zod": "^3.22.4" 90 }, 91 "devDependencies": { 92 "@atproto/lex-cli": "^0.8.0", 93 "@flydotio/dockerfile": "^0.7.10", 94 "@testcontainers/postgresql": "^11.0.3", 95 "@testcontainers/redis": "^11.4.0", 96 "@types/cookie-parser": "^1.4.9", 97 "@types/cors": "^2.8.18", 98 "@types/express": "^5.0.1", 99 "@types/ioredis": "^5.0.0", 100 "@types/jest": "^29.5.14", 101 "@types/jsdom": "^21.1.7", 102 "@types/jsonwebtoken": "^9.0.9", 103 "@types/pg": "^8.11.13", 104 "@types/supertest": "^6.0.3", 105 "@types/ws": "^8.18.1", 106 "@typescript-eslint/eslint-plugin": "^8.37.0", 107 "@typescript-eslint/parser": "^8.37.0", 108 "concurrently": "^9.1.2", 109 "dotenv-cli": "^8.0.0", 110 "drizzle-kit": "^0.31.1", 111 "drizzle-orm": "^0.43.1", 112 "eslint": "^9.31.0", 113 "eslint-config-prettier": "^10.1.5", 114 "eslint-plugin-prettier": "^5.5.1", 115 "eslint-plugin-storybook": "^9.1.2", 116 "jest": "^29.7.0", 117 "jsdom": "^26.1.0", 118 "nodemon": "^3.1.10", 119 "pg": "^8.14.1", 120 "playwright": "^1.40.0", 121 "prettier": "^3.6.2", 122 "supertest": "^7.1.0", 123 "testcontainers": "^11.0.3", 124 "ts-jest": "^29.3.2", 125 "tsconfig-paths": "^4.2.0", 126 "tsup": "^8.4.0", 127 "typescript": "^5.8.3" 128 } 129}