ash_hq/mix.exs

129 lines
4.2 KiB
Elixir
Raw Normal View History

2022-03-21 17:43:24 +13:00
defmodule AshHq.MixProject do
use Mix.Project
def project do
[
app: :ash_hq,
version: "0.1.0",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
2022-03-21 17:43:24 +13:00
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {AshHq.Application, []},
extra_applications: [:logger, :runtime_tools, :os_mon]
2022-03-21 17:43:24 +13:00
]
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
[
2022-09-30 09:27:55 +13:00
{:ash, github: "ash-project/ash", override: true},
2022-09-28 07:19:19 +13:00
# {:ash, "~> 2.0.0-rc.8"},
2022-09-30 09:27:55 +13:00
# {:ash, path: "../ash", override: true},
2022-09-28 07:19:19 +13:00
2022-09-16 10:35:33 +12:00
# {:ash_postgres, "~> 1.0.0-rc.3"},
{:ash_postgres, github: "ash-project/ash_postgres"},
2022-04-01 10:29:23 +13:00
# {:ash_postgres, path: "../ash_postgres"},
2022-09-16 10:35:33 +12:00
# {:ash_phoenix, "~> 1.0.0-rc.0"},
{:ash_phoenix, github: "ash-project/ash_phoenix"},
{:ash_graphql, github: "ash-project/ash_graphql"},
{:absinthe_plug, "~> 1.5"},
2022-08-31 16:23:27 +12:00
# {:ash_phoenix, github: "ash-project/ash_phoenix", branch: "ash-2.0", override: true},
# {:ash_livebook, path: "../ash_livebook", only: [:dev]},
2022-09-28 07:19:19 +13:00
{:spark, "~> 0.1"},
# {:spark, path: "../spark", override: true},
{:tails, github: "zachdaniel/tails"},
2022-06-05 08:58:50 +12:00
{:earmark, "~> 1.5.0-pre1", override: true},
{:surface, "~> 0.9.1"},
2022-03-26 10:17:01 +13:00
{:surface_heroicons, "~> 0.6.0"},
2022-03-29 11:05:19 +13:00
# Syntax Highlighting
2022-03-26 10:17:01 +13:00
{:makeup, "~> 1.1"},
{:makeup_elixir, "~> 0.16.0"},
2022-03-29 11:05:19 +13:00
{:makeup_graphql, "~> 0.1.2"},
{:makeup_erlang, "~> 0.1.1"},
{:makeup_eex, "~> 0.1.1"},
{:makeup_js, "~> 0.1.0"},
{:makeup_sql, "~> 0.1.0"},
# Emails
{:swoosh, "~> 1.3"},
{:premailex, "~> 0.3.0"},
# Authentication
{:bcrypt_elixir, "~> 3.0"},
# Encryption
{:cloak, "~> 1.1"},
# CSP
{:plug_content_security_policy, "~> 0.2.1"},
2022-09-13 11:36:28 +12:00
# Live Dashboard
{:phoenix_live_dashboard, "~> 0.6"},
{:ecto_psql_extras, "~> 0.6"},
2022-10-05 15:13:49 +13:00
{:phoenix_ecto, "~> 4.4"},
2022-03-29 11:05:19 +13:00
# Phoenix/Core dependencies
2022-03-21 17:43:24 +13:00
{:phoenix, "~> 1.6.6"},
{:ecto_sql, "~> 3.6"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.18"},
2022-03-26 10:17:01 +13:00
{:nimble_options, "~> 0.4.0", override: true},
{:finch, "~> 0.10.2"},
{:floki, ">= 0.30.0"},
2022-03-21 17:43:24 +13:00
{:esbuild, "~> 0.3", runtime: Mix.env() == :dev},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.18"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
# Dependencies
2022-08-23 15:02:53 +12:00
{:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:dev, :test]},
# Build/Check dependencies
{:git_ops, "~> 2.4.4", only: :dev},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:ex_check, "~> 0.14", only: :dev},
{:credo, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:sobelow, ">= 0.0.0", only: :dev, runtime: false},
{:excoveralls, "~> 0.14", only: [:dev, :test]},
{:eflame, "~> 1.0", only: [:dev, :test]}
2022-03-21 17:43:24 +13:00
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to install project dependencies and perform other setup tasks, run:
#
# $ mix setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
2022-09-16 10:35:33 +12:00
seed: ["run priv/repo/seeds.exs"],
2022-03-26 10:17:01 +13:00
setup: ["ash_postgres.create", "ash_postgres.migrate", "seed"],
reset: ["drop", "setup"],
credo: "credo --strict",
2022-03-26 10:17:01 +13:00
drop: ["ash_postgres.drop"],
2022-03-21 17:43:24 +13:00
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
sobelow: ["sobelow --skip -i Config.Headers,Config.CSRFRoute"],
2022-03-26 10:17:01 +13:00
"assets.deploy": [
2022-08-23 11:44:21 +12:00
"cmd --cd assets npm install && npm run deploy",
2022-03-26 10:17:01 +13:00
"esbuild default --minify",
"phx.digest"
]
2022-03-21 17:43:24 +13:00
]
end
end