-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
43 lines (39 loc) · 1.04 KB
/
mix.exs
File metadata and controls
43 lines (39 loc) · 1.04 KB
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
defmodule ShopifyAPIREST.MixProject do
use Mix.Project
@version "0.1.0"
def project do
[
app: :shopify_api_rest,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {ShopifyAPIREST.Application, []},
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
# Dev and test
{:bypass, "~> 2.1", only: :test},
{:credo, "~> 1.0", only: [:dev, :test]},
{:dialyxir, "~> 1.4.1", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.38.2", only: [:dev], runtime: false},
{:ex_machina, "~> 2.8.0", only: :test},
{:faker, "~> 0.17", only: :test},
{:shopify_api,
github: "orbit-apps/elixir-shopifyapi",
branch: "feature/move-rest-client-to-own-repo",
only: [:dev, :test],
override: true},
# Prod
{:httpoison, "~> 2.0"}
]
end
end