-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
40 lines (37 loc) · 1.68 KB
/
Copy pathdeps.edn
File metadata and controls
40 lines (37 loc) · 1.68 KB
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
{:paths ["src" "test" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.11.1"} ; clojure
aero/aero {:mvn/version "1.1.6"} ; config
party.donut/system {:mvn/version "0.0.195"} ; DI
halboy/halboy {:mvn/version "6.0.1"} ; hateoas
clj-http/clj-http {:mvn/version "3.13.0"} ; make http calls
ring/ring {:mvn/version "1.9.6"} ; http -> map
metosin/reitit {:mvn/version "0.6.0"} ; routing
metosin/malli {:mvn/version "0.10.4"} ; coercion
metosin/jsonista {:mvn/version "0.3.7"} ; json
com.github.seancorfield/next.jdbc {:mvn/version "1.3.865"} ; database
com.h2database/h2 {:mvn/version "2.1.214"} ; in-memory sql
org.postgresql/postgresql {:mvn/version "42.7.3"}
hashp/hashp {:mvn/version "0.2.2"} ; pp
tick/tick {:mvn/version "0.7.5"} ; time
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"} ; clj/db conversion
uk.co.jordanrobinson/placid-fish {:mvn/version "2.0.14"} ; testing uri
freeport/freeport {:mvn/version "1.0.0"} ; find free port for testing
org.testcontainers/testcontainers {:mvn/version "1.19.7"}
clj-test-containers/clj-test-containers {:mvn/version "0.7.4"}}
:aliases
{:build
{:deps {io.github.clojure/tools.build
{:git/tag "v0.9.2" :git/sha "fe6b140"}}
:ns-default build}
:repl
{:extra-deps {nrepl/nrepl {:mvn/version "1.1.1"}
cider/cider-nrepl {:mvn/version "0.42.1"}}
:main-opts ["--main" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware]"
"--interactive"]}
:test
{:extra-paths ["test"]
:main-opts ["-m" "kaocha.runner"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.87.1366"}
org.clojure/test.check {:mvn/version "1.1.1"}}}}}