-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
79 lines (75 loc) · 2.14 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
69
70
71
72
73
74
75
76
77
78
79
defmodule SignsUi.Mixfile do
use Mix.Project
def project do
[
app: :signs_ui,
version: "0.0.1",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
test_coverage: [tool: LcovEx],
dialyzer: [plt_add_apps: [:ex_unit, :laboratory]],
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {SignsUi.Application, []},
included_applications: [:laboratory],
extra_applications: [
:logger,
:parse_trans,
:runtime_tools,
:ex_aws,
:ex_aws_s3
]
]
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
[
{:credo, "~> 1.4", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.4.4", only: [:dev, :test], runtime: false},
{:ex_aws_s3, "~> 2.0"},
{:ex_aws, "~> 2.0"},
{:lcov_ex, "~> 0.2", only: [:dev, :test], runtime: false},
{:gettext, "~> 0.11"},
{:gen_stage, "~> 1.0"},
{:server_sent_event_stage, "~> 1.2.1"},
{:castore, "~> 1.0"},
{:guardian_phoenix, "~> 2.0"},
{:guardian, "~> 2.0"},
{:jason, "~> 1.4.0"},
{:nimble_parsec, "~> 1.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:phoenix_pubsub, "~> 2.0"},
{:phoenix, "~> 1.7.1"},
{:phoenix_view, "~> 2.0"},
{:plug_cowboy, "~> 2.3"},
{:sentry, "~> 8.0"},
{:sobelow, "~> 0.8", only: :dev},
{:tzdata, "~> 1.1"},
{:ueberauth, "~> 0.10"},
{:ueberauth_oidcc, "~> 0.4"},
{:laboratory, github: "paulswartz/laboratory", ref: "cookie_opts"},
{:remote_ip, "~> 1.2"},
{
:realtime_signs,
github: "mbta/realtime_signs",
ref: "54a4f196c577a62f59cefaa7b1974bc7a800e578",
sparse: "priv",
app: false,
compile: false
}
]
end
end