fde96c0197
- Add Swagger UI files and updated API spec for Family Safety Tracker - Replace shelf_cors_headers with custom CORS middleware in server.dart - Add request_logger middleware with timing for auth and geo routes - Add REGISTRATION_SECRET_KEY to .env for registration validation - Remove postgres port exposure from docker-compose.yml - Update opencode.json model configuration - Add crypto dependency and update Flutter web assets
24 lines
468 B
YAML
24 lines
468 B
YAML
name: family_safety_tracker
|
|
description: A server app using the shelf package and Docker.
|
|
version: 1.0.0
|
|
# repository: https://github.com/my_org/my_repo
|
|
|
|
environment:
|
|
sdk: ^3.10.1
|
|
|
|
dependencies:
|
|
shelf: ^1.4.2
|
|
shelf_router: ^1.1.2
|
|
dart_jsonwebtoken: ^2.16.0
|
|
bcrypt: ^1.2.0
|
|
dotenv: ^4.1.0
|
|
postgres: ^3.5.10
|
|
uuid: ^4.5.0
|
|
shelf_cors_headers: ^0.1.5
|
|
shelf_static: ^1.1.3
|
|
crypto: ^3.0.3
|
|
|
|
dev_dependencies:
|
|
http: ^1.2.2
|
|
lints: ^6.0.0
|
|
test: ^1.25.6 |