-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
27 lines (27 loc) · 1.41 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
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/core.async {:mvn/version "0.5.527"}
com.taoensso/sente {:mvn/version "1.13.1"}}
:paths ["src/clj" "src/cljc" "src/cljs"]
:aliases {:clj-repl
{:main-opts
["-e" "(require '[clj-brokee.broker])"
"-e" "(in-ns 'clj-brokee.broker)"]}
:cljs-repl
{:extra-deps
{;;; cider/cider-nrepl {:mvn/version "0.22.3"}
;;; nrepl/nrepl {:mvn/version "0.6.0"}
;;; cider/piggieback {:mvn/version "0.4.2"}
com.bhauman/figwheel-main {:mvn/version "0.2.3"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}
:extra-paths ["target"]}
:nrepl
{:extra-deps
{cider/cider-nrepl {:mvn/version "0.22.3"}
;;; nrepl/nrepl {:mvn/version "0.6.0"}
cider/piggieback {:mvn/version "0.4.2"}
com.bhauman/figwheel-main {:mvn/version "0.2.3"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}}}
:pack
{:extra-deps {pack/pack.alpha {:git/url "https://github.com/juxt/pack.alpha.git"
:sha "2769a6224bfb938e777906ea311b3daf7d2220f5"}}
:main-opts ["-m"]}}}