-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
57 lines (52 loc) · 1.39 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
defmodule Firestore.MixProject do
use Mix.Project
def project do
[
app: :firestore,
description:
"An abstraction over Google's Firestore API for convenience and configurability.",
version: "0.1.0",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
# ExDoc configurations
name: "Elixir Firestore",
source_url: "https://github.com/userpilot/elixir-firestore",
docs: [
main: "README",
extras: ["README.md"]
],
# Dialyzer configurations
dialyzer: [
list_unused_filters: true,
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
plt_add_apps: [:mix]
]
]
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
[
{:google_api_firestore, "~> 0.22"},
{:cowlib, "~> 2.6"},
{:goth, "~> 1.3"},
{:tesla, "~> 1.4.0"},
{:hackney, "~> 1.10"},
{:gun, "~> 1.3"},
{:mint, "~> 1.0"},
{:finch, "~> 0.14.0"},
{:ibrowse, "~> 4.2"},
{:idna, "~> 6.0"},
{:castore, "~> 0.1"},
{:credo, "~> 1.6", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:git_hooks, "~> 0.7.0", only: :dev, runtime: false}
]
end
end