54 lines
718 B
Plaintext
54 lines
718 B
Plaintext
# Core Flask framework
|
|
Flask==3.0.3
|
|
Werkzeug==3.0.3
|
|
|
|
# Flask extensions
|
|
Flask-CORS==4.0.0
|
|
|
|
# Security
|
|
flask-talisman==1.1.0
|
|
|
|
# HTTP client
|
|
requests==2.31.0
|
|
|
|
# Networking and socket handling
|
|
python-socketio==5.11.4
|
|
|
|
# Threading utilities
|
|
eventlet==0.36.1
|
|
|
|
# Environment variables
|
|
python-dotenv==1.0.1
|
|
|
|
# Cryptography and hashing
|
|
PyJWT==2.8.0
|
|
cryptography==41.0.7
|
|
|
|
# Date and time handling
|
|
python-dateutil==2.8.2
|
|
|
|
# JSON Web Tokens
|
|
flask-jwt-extended==4.6.0
|
|
|
|
# Database
|
|
SQLAlchemy==2.0.23
|
|
Flask-Migrate==4.0.5
|
|
|
|
# Production server
|
|
gunicorn==21.2.0
|
|
|
|
# Monitoring
|
|
prometheus_client==0.20.0
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-cov==4.1.0
|
|
|
|
# Development
|
|
Flask-DebugToolbar==0.13.1
|
|
|
|
# Cache
|
|
redis==5.0.1
|
|
|
|
# Utilities
|
|
click==8.1.7 |