-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
29 lines (25 loc) · 1.27 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
{:paths ["src" "resources"]
:deps {com.github.clj-easy/graal-build-time {:mvn/version "1.0.5"}
org.clj-commons/clj-http-lite {:mvn/version "1.0.13"}
org.clojure/clojure {:mvn/version "1.11.3"}
org.clojure/data.json {:mvn/version "2.5.0"}
http-kit/http-kit {:mvn/version "2.8.0"}
metosin/malli {:mvn/version "0.16.3"}
org.clojure/tools.cli {:mvn/version "1.1.230"}}
:aliases
{:dev {:extra-paths ["dev" "test"]
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}}}
:nrepl
{:extra-paths ["dev"]
:extra-deps {cider/cider-nrepl {:mvn/version "0.50.2"}}
:main-opts ["-m" "nrepl.cmdline"
"-b" "0.0.0.0"
"--middleware"
"[cider.nrepl/cider-middleware]"]}
:test {:extra-paths ["test"]
:exec-fn kaocha.runner/exec-fn
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
nubank/matcher-combinators {:mvn/version "3.9.1"}}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}}}