mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
- tsconfig.json: remove duplicate target, add missing comma - requirements.txt: fix boto3/botocore version conflict - deployAll.ts, deployService.ts: remove duplicate concatenated code Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> RoadChain-SHA2048: f3e2c6a6f3c323b4 RoadChain-Identity: alexa@sovereign RoadChain-Full: f3e2c6a6f3c323b4d200ae278824975d0b102ec0ee1708560ccae57bf0f31819f19805317aa33b967b58b06750443394fafd250e40985dc35d2d89c12f369ef2083bcd4b0496043e87bfa1ef7ec7d307065d63190fa31461367dc3f2d76410326c1bd9602aac1587084f3d7ec068b6abffb94ff1bf18ce5408a4cd7523ff9a078c60c6f0050434c562b18b9f9ac81af72a23590e6d8e2ed79ea7de61cf2b9a1e1e44051ee2a151cb0c57f23b04db771944889473eb0ec2bf5d42bbd3727422c6e28987af96fb6006ee55604dfbded15a70cbe196da844945f373d838d446f33c0465e463f244992bc506e4ca6b414cc8b935e7d5fe993297444805dddb9af436
67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
# FastAPI and Server
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.22
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
alembic==1.12.1
|
|
psycopg2-binary==2.9.11
|
|
asyncpg==0.29.0
|
|
aiosqlite==0.19.0
|
|
|
|
# Authentication & Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
bcrypt==4.1.1
|
|
pyjwt==2.8.0
|
|
|
|
# Redis Cache
|
|
redis==5.0.1
|
|
hiredis==3.3.0
|
|
|
|
# AWS S3 for File Storage
|
|
boto3==1.35.99
|
|
botocore==1.35.99
|
|
|
|
# Email
|
|
email-validator==2.3.0
|
|
emails==0.6.0
|
|
jinja2==3.1.6
|
|
|
|
# WebSockets
|
|
websockets==12.0
|
|
|
|
# Utilities
|
|
python-dotenv==1.2.2
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
psutil==7.2.2
|
|
|
|
# HTTP Client
|
|
httpx==0.25.2
|
|
aiohttp==3.13.3
|
|
|
|
# Crypto/Blockchain
|
|
cryptography==46.0.5
|
|
ecdsa==0.19.1
|
|
hashlib-additional==1.1
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
httpx==0.25.2
|
|
|
|
# Monitoring
|
|
prometheus-client==0.19.0
|
|
|
|
# CORS (handled by Starlette/FastAPI)
|
|
# Dependency removed because package does not exist on PyPI.
|
|
|
|
# New API Integrations (Railway, Vercel, Stripe, Twilio, Slack, Discord, Sentry)
|
|
# Note: Most integrations use httpx (already included above)
|
|
# Additional packages for specific integrations:
|
|
stripe==14.4.1
|
|
sentry-sdk==1.45.1
|