index.community/backend/mix.exs

89 lines
2.3 KiB
Elixir
Raw Normal View History

2019-07-14 11:47:06 +00:00
defmodule Backend.MixProject do
use Mix.Project
def project do
[
app: :backend,
2019-08-31 18:55:34 +00:00
version: "2.8.2",
2019-07-14 11:47:06 +00:00
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {Backend.Application, []},
2019-07-27 10:56:00 +00:00
extra_applications: [
:logger,
:runtime_tools,
:mnesia,
:gollum,
:ex_twilio,
:elasticsearch,
:appsignal
]
2019-07-14 11:47:06 +00:00
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.4.3"},
{:phoenix_pubsub, "~> 1.1"},
{:phoenix_ecto, "~> 4.0"},
{:ecto_sql, "~> 3.0"},
{:postgrex, ">= 0.0.0"},
{:gettext, "~> 0.11"},
{:jason, "~> 1.0"},
{:plug_cowboy, "~> 2.0"},
{:httpoison, "~> 1.5"},
{:timex, "~> 3.5"},
{:honeydew, "~> 1.4.3"},
{:quantum, "~> 2.3"},
2019-07-17 16:16:25 +00:00
{:corsica, "~> 1.1.2"},
2019-08-21 12:37:23 +00:00
{:sobelow, "~> 0.8", only: [:dev, :test]},
{:gollum, "~> 0.3.2"},
2019-07-25 15:56:03 +00:00
{:public_suffix, "~> 0.6.0"},
{:idna, "~> 5.1.2", override: true},
{:swoosh, "~> 0.23.3"},
2019-07-26 22:30:11 +00:00
{:ex_twilio, "~> 0.7.0"},
2019-07-27 10:13:42 +00:00
{:elasticsearch, "~> 1.0"},
2019-08-21 12:30:47 +00:00
{:appsignal, "~> 1.10.1"},
2019-08-21 15:47:45 +00:00
{:credo, "~> 1.1", only: [:dev, :test], runtime: false},
2019-08-23 13:08:05 +00:00
{:nebulex, "~> 1.1"},
{:hunter, "~> 0.5.1"},
2019-08-27 13:50:16 +00:00
{:poison, "~> 4.0", override: true},
2019-08-29 16:54:34 +00:00
{:scrivener_ecto, "~> 2.2"},
2020-05-19 16:39:33 +00:00
{:recase, "~> 0.6.0"},
{:ex_rated, "~> 1.3"}
2019-07-14 11:47:06 +00:00
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end