Update pubspec.yaml
This commit is contained in:
parent
84f5ae5403
commit
478d45bf47
1 changed files with 4 additions and 13 deletions
17
pubspec.yaml
17
pubspec.yaml
|
@ -5,7 +5,7 @@ environment:
|
||||||
sdk: '>=2.0.0-dev <3.0.0'
|
sdk: '>=2.0.0-dev <3.0.0'
|
||||||
homepage: https://github.com/angel-dart/angel
|
homepage: https://github.com/angel-dart/angel
|
||||||
dependencies:
|
dependencies:
|
||||||
angel_auth: ^2.0.0-alpha # Supports stateless authentication via JWT
|
angel_auth: ^2.0.0 # Supports stateless authentication via JWT
|
||||||
angel_configuration: ^2.0.0 # Loads application configuration, along with support for .env files.
|
angel_configuration: ^2.0.0 # Loads application configuration, along with support for .env files.
|
||||||
angel_framework: ^2.0.0-alpha # The core server library.
|
angel_framework: ^2.0.0-alpha # The core server library.
|
||||||
angel_jael: ^2.0.0 # Server-side templating engine
|
angel_jael: ^2.0.0 # Server-side templating engine
|
||||||
|
@ -14,24 +14,15 @@ dependencies:
|
||||||
angel_orm_postgres: ^1.0.0-dev # PostgreSQL support for Angel ORM
|
angel_orm_postgres: ^1.0.0-dev # PostgreSQL support for Angel ORM
|
||||||
angel_serialize: ^2.0.0 # Serialization runtime support
|
angel_serialize: ^2.0.0 # Serialization runtime support
|
||||||
angel_production: ^1.0.0-alpha
|
angel_production: ^1.0.0-alpha
|
||||||
angel_static: ^2.0.0-alpha # Static file server
|
angel_static: ^2.0.0 # Static file server
|
||||||
angel_validate: ^2.0.0-alpha # Allows for validation of input data
|
angel_validate: ^2.0.0 # Allows for validation of input data
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel_hot: ^2.0.0 # Hot-reloading support. :)
|
angel_hot: ^2.0.0 # Hot-reloading support. :)
|
||||||
angel_migration_runner: ^2.0.0-alpha # Runs migrations
|
angel_migration_runner: ^2.0.0-alpha # Runs migrations
|
||||||
angel_orm_generator: ^2.0.0-dev # Generates ORM libraries
|
angel_orm_generator: ^2.0.0-dev # Generates ORM libraries
|
||||||
angel_serialize_generator: ^2.0.0 # Generates model serialization code
|
angel_serialize_generator: ^2.0.0 # Generates model serialization code
|
||||||
angel_test: ^2.0.0-alpha # Utilities for testing Angel servers.
|
angel_test: ^2.0.0 # Utilities for testing Angel servers.
|
||||||
build_runner: ^1.0.0 # Runs builds
|
build_runner: ^1.0.0 # Runs builds
|
||||||
io: ^0.3.2
|
io: ^0.3.2
|
||||||
pedantic: ^1.0.0
|
pedantic: ^1.0.0
|
||||||
test: ^1.0.0
|
test: ^1.0.0
|
||||||
dependency_overrides:
|
|
||||||
angel_orm:
|
|
||||||
git:
|
|
||||||
url: https://github.com/angel-dart/orm.git
|
|
||||||
path: angel_orm
|
|
||||||
angel_orm_generator:
|
|
||||||
git:
|
|
||||||
url: https://github.com/angel-dart/orm.git
|
|
||||||
path: angel_orm_generator
|
|
Loading…
Reference in a new issue