-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
32 lines (30 loc) · 1.3 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
{:paths ["src" "dev" "test"]
:deps
{babashka/fs {:mvn/version "0.5.23"}
babashka/process {:mvn/version "0.5.22"}
cheshire/cheshire {:mvn/version "5.13.0"}
com.datomic/peer {:mvn/version "1.0.7277"}
com.widdindustries/cljc.java-time {:mvn/version "0.1.21"}
com.widdindustries/time-literals {:mvn/version "0.1.10"}
duratom/duratom {:mvn/version "0.5.9"}
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}
http-kit/http-kit {:mvn/version "2.8.0"}
io.github.nextjournal/clerk {:mvn/version "0.17.1102"}
metosin/reitit {:mvn/version "0.7.2"}
org.babashka/cli {:mvn/version "0.8.61"}
org.clojure/clojure {:mvn/version "1.12.0"}
;; Supress Java logging warnings
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}
;; For development
;;
;; We want these accessible in prod REPLs too, so into main deps they go.
io.github.tonsky/clj-reload {:mvn/version "0.7.1"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
com.nextjournal/beholder {:mvn/version "1.0.2"}
}
:aliases
{:testrunner {:extra-deps {io.github.cognitect-labs/test-runner {:git/url "https://github.com/cognitect-labs/test-runner" :git/tag "v0.5.1" :git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]}
:kaocha {:main-opts ["-m" "kaocha.runner"]}
:nextjournal/garden {:exec-fn mikrobloggeriet.system/start!}
,}}