This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
158 lines (132 loc) · 4.26 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
defmodule CiExample.MixProject do
use Mix.Project
def project do
[
app: :ci_example,
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Release and config
{:distillery, "~> 2.1"},
{:config_tuples, "~> 0.4.2"},
# Clustering
{:libcluster, "~> 3.3.0"},
# Phoenix Framework
{:phoenix, "~> 1.6.5"},
{:phoenix_live_view, "~> 0.17"},
{:phoenix_pubsub, "~> 2.0"},
{:mime, "~> 2.0"},
{:phoenix_ecto, "~> 4.4"},
{:phoenix_live_dashboard, "~> 0.6"},
{:phoenix_html, "~> 3.2.0"},
{:phoenix_live_reload, "~> 1.2", only: [:dev]},
# Telemetry
{:telemetry_poller, "~> 0.5"},
{:telemetry_metrics, "~> 0.6"},
# Database
{:ecto_sql, "~> 3.4", override: true},
{:ecto_psql_extras, "~> 0.6"},
{:postgrex, ">= 0.0.0"},
# Support
{:gettext, "~> 0.11"},
{:jason, "~> 1.1"},
{:plug_cowboy, "~> 2.1"},
{:httpoison, "~> 1.6"},
{:floki, ">= 0.27.0", override: true},
{:geolix_adapter_mmdb2, "~> 0.6.0"},
{:ua_parser, "~> 1.8"},
{:nimble_csv, "~> 1.1"},
{:uuid, "~> 1.1"},
{:esbuild, "~> 0.2", runtime: Mix.env() in [:dev]},
{:dart_sass, "~> 0.3", runtime: Mix.env() in [:dev]},
# GraphQL
{:absinthe, "~> 1.5"},
{:absinthe_plug, "~> 1.5"},
{:absinthe_phoenix, "~> 2.0"},
{:absinthe_error_payload, "~> 1.0"},
{:dataloader, "~> 1.0"},
# Authentication
{:guardian, "~> 2.1"},
{:guardian_db, "~> 2.0"},
{:sans_password, "~> 1.1"},
{:swoosh, "~> 1.5.0"},
{:phoenix_swoosh, "~> 0.3.2"},
{:qrcode, "~> 0.1"},
{:ex_twilio, "~> 0.9.0"},
{:cowboy, "~> 2.9", override: true},
# API
{:exconstructor, "~> 1.2.0"},
{:tesla, "~> 1.4.3"},
# Metrics
{:appsignal, "~> 2.2.10"},
{:appsignal_phoenix, "~> 2.0.13"},
# Static code analysis
{:credo, "~> 1.5", only: [:dev, :test]},
{:sobelow, "~> 0.11.1", only: [:dev, :test]},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
# Testing
{:excoveralls, "~> 0.14", only: :test},
{:ex_machina, "~> 2.6", only: :test},
{:faker, "~> 0.17.0"},
{:mox, "~> 1.0.0", only: :test},
{:mock, "~> 0.3.7", only: :test},
{:assertions, "~> 0.10", only: :test},
{:exvcr, "~> 0.13.2", only: :test},
{:lcov_ex, "~> 0.2.0", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.1", only: [:dev, :test], runtime: false},
# Formatting Forms
{:number, "~> 1.0"},
{:ex_phone_number, "~> 0.2.1"},
# Calculations
{:money, "~> 1.9.0"},
{:decimal, "~> 2.0.0", override: true},
{:statistics, "~> 0.6.2"},
{:libgraph, "~> 0.13.3"},
{:numerix, "~> 0.7",
github: "safwank/Numerix", ref: "ca2abe476c91172d05488f8a7703545fc9563c6f"},
{:flow, "~> 1.1.0"},
# File uploads
# elixir AWS (Amazon Web Service)
# TODO: ex_aws 2.2 causes a dependency resolution failure with exjsx
{:ex_aws, "~> 2.1"},
# AWS s3 (Simple Storage Service) service package
{:ex_aws_s3, "~> 2.0"},
{:broadway, "~> 1.0"},
{:ex_aws_sqs, "~> 3.2"},
{:broadway_sqs, "~> 0.7"},
# Jobs and Processing
{:oban, "~> 2.8.0"},
# Cross origin resource sharing plug. needed to deal with
# the frontend calling doing fetch requests.
{:cors_plug, "~> 2.0"},
# iOS and Android push notifications.
{:pigeon, "~> 1.5"},
{:kadabra, "~> 0.6.0", override: true},
# library to serialize structs to json for the api
{:maru_entity, "~> 0.2.1"},
# ImageMagick wrapper for editing images
{:mogrify, "~> 0.9.0"},
# URL unfurling
{:furlex, github: "aai/furlex"},
# timex includes tzdata for timezones
{:timex, "~> 3.6"},
# PDF Generation
{:sneeze, "~> 1.2"},
{:html_entities, "~> 0.5.2", override: true},
# In memory key/value cache
{:cachex, "~> 3.4"}
]
end
end