-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
45 lines (41 loc) · 1001 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
defmodule ExSpring83.MixProject do
use Mix.Project
def project do
[
aliases: aliases(),
app: :exspring83,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
def application do
[
extra_applications: [:logger],
mod: {ExSpring83.Application, []}
]
end
defp deps do
[
{:cachex, "~> 3.4"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false},
{:ed25519, "~> 1.4"},
{:excoveralls, "~> 0.14.5", only: [:dev, :test]},
{:floki, "~> 0.32.1"},
{:plug_cowboy, "~> 2.0"},
{:timex, "~> 3.7"}
]
end
defp aliases do
["spring83.server": "run --no-halt"]
end
end