protevus/pubspec.yaml

71 lines
2.1 KiB
YAML
Raw Normal View History

2016-12-21 20:34:04 +00:00
name: angel
2018-11-14 07:18:56 +00:00
description: An app that's going to be amazing pretty soon.
publish_to: none # Ensure we don't accidentally publish our private code! ;)
2016-12-21 20:34:04 +00:00
environment:
2021-03-07 12:42:48 +00:00
sdk: '>=2.10.0 <3.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:
2019-01-23 19:44:10 +00:00
angel_auth: ^2.0.0 # Supports stateless authentication via JWT
2018-09-05 00:57:39 +00:00
angel_configuration: ^2.0.0 # Loads application configuration, along with support for .env files.
2019-04-29 16:48:06 +00:00
angel_framework: ^2.0.0 # The core server library.
2018-11-10 21:56:41 +00:00
angel_jael: ^2.0.0 # Server-side templating engine
angel_production: ^1.0.0 # Production application runner.
2019-01-23 19:44:10 +00:00
angel_static: ^2.0.0 # Static file server
angel_validate: ^2.0.0 # Allows for validation of input data
2017-02-28 22:59:39 +00:00
dev_dependencies:
2018-10-02 17:10:56 +00:00
angel_hot: ^2.0.0 # Hot-reloading support. :)
2019-01-28 00:48:33 +00:00
angel_test: ^2.0.0 # Utilities for testing Angel servers.
io: ^0.3.2 # For pretty printing.
pedantic: ^1.0.0 # Enforces Dart style conventions.
2021-03-07 12:42:48 +00:00
test: ^1.15.7 # For unit testing.
2021-02-18 13:30:50 +00:00
dependency_overrides:
angel_auth:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/auth
2021-02-18 13:30:50 +00:00
angel_configuration:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/configuration
2021-02-18 13:30:50 +00:00
angel_framework:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/framework
2021-02-18 13:30:50 +00:00
angel_jael:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/jael/angel_jael
2021-02-18 13:30:50 +00:00
angel_production:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/production
2021-02-18 13:30:50 +00:00
angel_static:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/static
2021-02-18 13:30:50 +00:00
angel_validate:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/validate
2021-02-18 13:30:50 +00:00
angel_hot:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/hot
2021-02-18 13:30:50 +00:00
angel_test:
2021-03-07 12:42:48 +00:00
git:
url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x
path: packages/test
2021-02-18 13:30:50 +00:00