-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
89 lines (73 loc) · 5.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
;; Copyright (C) 2022-2023 Magenta Health Inc.
;; Authored by Carmen La <https://carmen.la/>.
;; This file is part of LookupLab.
;; LookupLab is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;; LookupLab is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;; You should have received a copy of the GNU Affero General Public License
;; along with LookupLab. If not, see <https://www.gnu.org/licenses/>.
{:paths ["src/clj"
"resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
;; Routing
metosin/reitit {:mvn/version "0.5.18"}
;; Ring
metosin/ring-http-response {:mvn/version "0.9.3"}
ring/ring-core {:mvn/version "1.9.5"}
ring/ring-defaults {:mvn/version "0.3.3"}
ring-cors/ring-cors {:mvn/version "0.1.13"}
;; Data coercion
luminus-transit/luminus-transit {:mvn/version "0.1.5"
:exclusions [com.cognitect/transit-clj]}
metosin/muuntaja {:mvn/version "0.6.8"}
;; Logging
ch.qos.logback/logback-classic {:mvn/version "1.4.4"}
;; kit Libs
io.github.kit-clj/kit-core {:mvn/version "1.0.2"}
io.github.kit-clj/kit-undertow {:mvn/version "1.0.2"}
io.github.kit-clj/kit-nrepl {:mvn/version "1.0.1"}
io.github.kit-clj/kit-sql-conman {:mvn/version "1.0.3"}
io.github.kit-clj/kit-sql-migratus {:mvn/version "1.0.1"}
io.github.kit-clj/kit-postgres {:mvn/version "1.0.1"}
org.postgresql/postgresql {:mvn/version "42.3.4"}}
:aliases {:build {:deps {io.github.clojure/tools.build {:git/sha "e3e3532"
:git/tag "v0.8.0" :git/url "https://github.com/clojure/tools.build.git"}
slipset/deps-deploy {:mvn/version "0.2.0"}
weavejester/dependency {:mvn/version "0.2.1"}}
:ns-default build}
:dev {:extra-deps {com.lambdaisland/classpath {:mvn/version "0.0.27"}
criterium/criterium {:mvn/version "0.4.6"}
expound/expound {:mvn/version "0.9.0"}
integrant/repl {:mvn/version "0.3.2"}
pjstadig/humane-test-output {:mvn/version "0.11.0"}
ring/ring-devel {:mvn/version "1.9.5"}
ring/ring-mock {:mvn/version "0.4.0"}
io.github.kit-clj/kit-generator {:mvn/version "0.1.6"}
org.clojure/tools.namespace {:mvn/version "1.2.0"}}
:extra-paths ["env/dev/clj" "env/dev/resources" "test/clj"]}
:nrepl {:extra-deps {nrepl/nrepl {:mvn/version "0.9.0"}}
:main-opts ["-m" "nrepl.cmdline" "-i"]}
:cider {:extra-deps {nrepl/nrepl {:mvn/version "0.9.0"}
cider/cider-nrepl {:mvn/version "0.28.3"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]" "-i"]}
:test {:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
expound/expound {:mvn/version "0.9.0"}
integrant/repl {:mvn/version "0.3.2"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.0"
:git/sha "b3fd0d2"}
pjstadig/humane-test-output {:mvn/version "0.11.0"}
ring/ring-devel {:mvn/version "1.9.5"}
ring/ring-mock {:mvn/version "0.4.0"}
io.github.kit-clj/kit-generator {:mvn/version "0.1.6"}
org.clojure/tools.namespace {:mvn/version "1.2.0"}
com.lambdaisland/classpath {:mvn/version "0.0.27"}}
:exec-fn cognitect.test-runner.api/test
:extra-paths ["env/dev/clj" "env/dev/resources" "env/test/resources" "test/clj"]
:main-opts ["-e" "(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)"
"-m" "cognitect.test-runner"]}}
}