This repository was archived by the owner on Jul 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.edn
27 lines (23 loc) · 1.46 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
{:paths ["src" "resources"]
:deps {net.cgrand/macrovich {:mvn/version "0.2.1"}
com.taoensso/encore {:mvn/version "3.20.0"}
metosin/malli {:mvn/version "0.7.5"}}
:aliases {:cljs {:extra-deps {thheller/shadow-cljs {:mvn/version "2.16.8"}}}
:dev {:extra-paths ["src-dev"]
:extra-deps {cider/cider-nrepl {:mvn/version "0.27.4"}
nrepl/nrepl {:mvn/version "0.9.0"}}}
:test {:extra-paths ["test"]}
:test-runner {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.60.972"}
lambdaisland/kaocha-cljs2 {:mvn/version "0.0.35"
:exclusions [lambdaisland/glogi]}
;; you get errors when using glogi versions earlier than 1.0.100
lambdaisland/glogi {:mvn/version "1.0.106"}
thheller/shadow-cljs {:mvn/version "2.16.8"}}}
:snoop {:jvm-opts ["-Dsnoop.enabled"]}
:build {:extra-deps {io.github.clojure/tools.build {:git/tag "v0.7.2" :git/sha "0361dde"}
io.github.juxt/pack.alpha {:git/sha "9fd4a63ddeec3bedcbc819422de5a40ccb9eb8c9"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}
;;
}}