protevus/pubspec.yaml

30 lines
1.2 KiB
YAML
Raw Normal View History

2016-12-21 20:34:04 +00:00
name: angel
description: An easily-extensible web server framework in Dart.
publish_to: none # Ensure we don't accidentally publish our private code! ;)
2016-12-21 20:34:04 +00:00
environment:
sdk: ">=1.19.0"
homepage: https://github.com/angel-dart/angel
2017-10-19 21:53:33 +00:00
dependencies:
angel_framework: ^1.1.0-alpha # The core server library.
angel_serialize: ^1.0.0-alpha # Model definition metadata.
angel_auth: ^1.1.0-alpha # Supports stateless authentication via JWT
angel_configuration: ^1.1.0-alpha # Loads application configuration, along with support for .env files.
angel_cors: ^1.0.0 # CORS support
angel_jael: ^1.0.0-alpha # Server-side templating engine
angel_static: ^1.3.0-alpha # Static file server
2017-10-19 21:59:45 +00:00
angel_validate: ^1.0.0 # Allows for validation of input data
2017-02-28 22:59:39 +00:00
dev_dependencies:
2017-10-20 06:15:55 +00:00
angel_hot: ^1.1.0-alpha # Hot-reloading support. :)
2017-10-19 21:53:33 +00:00
angel_serialize_generator: ^1.0.0-alpha # Generates serialization code for models.
angel_test: ^1.1.0-alpha # Utilities for testing Angel servers.
build_runner: ^0.5.0
2017-02-28 22:59:39 +00:00
grinder: ^0.8.0
2016-12-21 20:34:04 +00:00
test: ^0.12.13
transformers:
# Injects data from application configuration into Dart code.
#
# Documentation:
# https://github.com/angel-dart/configuration
2017-04-10 14:03:29 +00:00
- angel_configuration