-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdeps.edn
More file actions
33 lines (27 loc) · 1.66 KB
/
deps.edn
File metadata and controls
33 lines (27 loc) · 1.66 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
com.github.parenthesin/components {:mvn/version "0.4.3"
:exclusions [metosin/malli]}
com.github.seancorfield/honeysql {:mvn/version "2.7.1295"}
metosin/reitit-swagger {:mvn/version "0.7.2"}
org.postgresql/postgresql {:mvn/version "42.7.5"}
prismatic/schema {:mvn/version "1.4.1"}
prismatic/schema-generators {:mvn/version "0.1.5"}}
:aliases
{:test {:extra-paths ["test"]
:extra-deps {io.zonky.test/embedded-postgres {:mvn/version "2.0.4"}
io.zonky.test.postgres/embedded-postgres-binaries-darwin-arm64v8 {:mvn/version "14.8.0"}
org.clojars.bigsy/pg-embedded-clj {:mvn/version "1.0.2"}
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.20.1"}}
:main-opts ["-m" "kaocha.runner"]}
:clojure-lsp {:replace-deps {com.github.clojure-lsp/clojure-lsp-standalone {:mvn/version "2025.03.07-17.42.36"}}
:main-opts ["-m" "clojure-lsp.main"]}
:nrepl {:extra-deps {cider/cider-nrepl {:mvn/version "0.52.1"}}
: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.7"}}
:ns-default build
:exec-args {:uber-file "target/service.jar"}}}}