protevus/pubspec.yaml

23 lines
1,009 B
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:
2018-03-29 23:55:28 +00:00
sdk: '>=2.0.0-dev <2.0.0'
2016-12-21 20:34:04 +00:00
homepage: https://github.com/angel-dart/angel
2017-10-19 21:53:33 +00:00
dependencies:
2018-03-29 23:55:28 +00:00
angel_auth: ^1.1.0 # Supports stateless authentication via JWT
angel_configuration: ^1.1.0 # Loads application configuration, along with support for .env files.
2017-10-19 21:53:33 +00:00
angel_cors: ^1.0.0 # CORS support
2018-03-29 23:55:28 +00:00
angel_framework: ^1.1.0 # The core server library.
angel_jael: ^1.0.0 # Server-side templating engine
angel_serialize: ^2.0.0 # Model definition metadata.
angel_static: ^1.3.0 # 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. :)
2018-03-29 23:55:28 +00:00
angel_serialize_generator: ^2.0.0 # Generates serialization code for models.
angel_test: ^1.1.0 # Utilities for testing Angel servers.
build_runner: ^0.7.0
2017-10-20 06:25:17 +00:00
console: ^2.2.4
2017-02-28 22:59:39 +00:00
grinder: ^0.8.0
2018-03-29 23:55:28 +00:00
test: ^0.12.13