-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
33 lines (26 loc) · 2.1 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
{:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/clojurescript {:mvn/version "1.10.597"}
org.clj-commons/clj-http-lite {:mvn/version "1.0.13"}
com.cognitect/transit-clj {:mvn/version "1.0.324"}}
:paths ["src" "target/classes"]
:aliases {:dev {:extra-paths ["dev" "benchmark/src"]
:extra-deps {org.clojure/tools.namespace {:mvn/version "0.2.11"}
cider/cider-nrepl {:mvn/version "0.19.0"}
nrepl/nrepl {:mvn/version "0.5.3"}
org.clojure/tools.cli {:mvn/version "1.0.194"}
io.replikativ/datahike {:git/url "https://github.com/replikativ/datahike.git"
:sha "e981e72f258699254b793937c9326dcf0d83ef35"}}}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.516"}
lambdaisland/kaocha {:mvn/version "1.0.632"}
lambdaisland/kaocha-cljs {:mvn/version "0.0-71"}
io.replikativ/datahike {:git/url "https://github.com/replikativ/datahike.git"
:sha "e981e72f258699254b793937c9326dcf0d83ef35"}}}
:repl {:extra-deps {cider/cider-nrepl {:mvn/version "0.19.0"}
nrepl/nrepl {:mvn/version "0.5.3"}
org.clojure/tools.namespace {:mvn/version "0.2.11"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:format {:extra-deps {cljfmt/cljfmt {:mvn/version "0.7.0"}}
:main-opts ["-m" "cljfmt.main" "check"]}
:ffix {:extra-deps {cljfmt/cljfmt {:mvn/version "0.7.0"}}
:main-opts ["-m" "cljfmt.main" "fix"]}}}