-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
47 lines (37 loc) · 1.51 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"}
org.clojure/core.async {:mvn/version "1.6.673"}
com.taoensso/timbre {:mvn/version "6.0.4"}
metosin/malli {:mvn/version "0.10.0"}
com.github.mccraigmccraig/promesa {:mvn/version "10.0.608"}
manifold/manifold {:mvn/version "0.3.0"}
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
frankiesardo/linked {:mvn/version "1.3.0"}}
:aliases
{:test
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}
:build {:deps {io.github.seancorfield/build-clj
{:git/tag "v0.8.2" :git/sha "0ffdb4c"}}
:ns-default build}
:shadow-cljs
{:extra-deps {thheller/shadow-cljs {:mvn/version "2.22.9"}}
:main-opts ["-m" "shadow.cljs.devtools.cli"]}
:shadow-node-repl
{:extra-deps {nrepl/nrepl {:mvn/version "1.1.0-alpha1"}
cider/piggieback {:mvn/version "0.5.3"}
refactor-nrepl/refactor-nrepl {:mvn/version "3.6.0"}
cider/cider-nrepl {:mvn/version "0.29.0"}}}
:nrepl
{:extra-paths ["../promesa/src"]
:extra-deps
{nrepl/nrepl {:mvn/version "1.1.0-alpha1"}
cider/cider-nrepl {:mvn/version "0.29.0"}
refactor-nrepl/refactor-nrepl {:mvn/version "3.6.0"}}
:main-opts
["-m" "nrepl.cmdline"
"--middleware"
"[refactor-nrepl.middleware/wrap-refactor,cider.nrepl/cider-middleware]"]
}}}