-
Notifications
You must be signed in to change notification settings - Fork 4
/
deps.edn
31 lines (25 loc) · 1.48 KB
/
deps.edn
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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
com.github.parenthesin/components {:mvn/version "0.3.1"
:exclusions [metosin/malli]}
com.github.seancorfield/honeysql {:mvn/version "2.6.1203"}
metosin/reitit-swagger {:mvn/version "0.7.2"}
org.postgresql/postgresql {:mvn/version "42.7.4"}
prismatic/schema {:mvn/version "1.4.1"}
prismatic/schema-generators {:mvn/version "0.1.5"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojars.bigsy/pg-embedded-clj {:mvn/version "1.0.1"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
nubank/matcher-combinators {:mvn/version "3.9.1"}
nubank/state-flow {:mvn/version "5.18.0"}}
:main-opts ["-m" "kaocha.runner"]}
:clojure-lsp {:replace-deps {com.github.clojure-lsp/clojure-lsp-standalone {:mvn/version "2024.08.05-18.16.00"}}
:main-opts ["-m" "clojure-lsp.main"]}
:nrepl {:extra-deps {cider/cider-nrepl {:mvn/version "0.50.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:migratus {:main-opts ["-m" "parenthesin.helpers.migrations"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build
:exec-args {:uber-file "target/service.jar"}}}}