-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
68 lines (61 loc) · 1.89 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
defmodule CrunchBerry.MixProject do
use Mix.Project
def project do
[
app: :crunch_berry,
version: "0.7.0",
elixir: "~> 1.10",
elixirc_paths: elixirc_paths(Mix.env()),
config_path: "./config/config.exs",
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
],
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
],
docs: [
main: "readme",
extras: ["README.md"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Phoenix
{:phoenix_live_view, ">= 1.0.0"},
{:phoenix_html, ">= 4.0.0"},
# Utils
{:ex_doc, "~> 0.24", only: :dev, runtime: false},
{:timex, "~> 3.7"},
{:jason, "~> 1.2", only: [:dev, :test]},
# Test helpers
{:floki, ">= 0.36.0", only: :test},
{:excoveralls, "~> 0.13", only: :test},
{:junit_formatter, "~> 3.1", only: :test},
# Static analysis
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:credo_contrib, "~> 0.2", only: [:dev, :test], runtime: false},
{:credo_envvar, "~> 0.1", only: [:dev, :test], runtime: false},
{:credo_naming, "~> 2.0", only: [:dev, :test], runtime: false},
{:ex_check, "~> 0.12", only: [:dev, :test], runtime: false},
{:mix_audit, "~> 2.0", only: [:dev, :test], runtime: false}
]
end
end