-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeps.edn
31 lines (31 loc) · 1.67 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
{
:paths ["src/clj" "src/cljc"]
:deps {
com.andrewmcveigh/cljs-time {:mvn/version "0.5.2"}
com.cognitect/transit-clj {:mvn/version "1.0.333"}
com.cognitect/transit-cljs {:mvn/version "0.8.280"}
com.taoensso/timbre {:mvn/version "6.5.0"}
org.clojure/clojure {:mvn/version "1.11.3"}
org.clojure/data.json {:mvn/version "2.5.0"}
org.clojure/tools.namespace {:mvn/version "1.5.0"}
org.slf4j/slf4j-nop {:mvn/version "2.0.13"} ;; eliminated annoying log output
}
:aliases {
:test {:extra-deps {
clj-commons/pomegranate {:mvn/version "1.2.24"}
com.microsoft.playwright/playwright {:mvn/version "1.44.0"}
io.github.clojure/tools.build {:mvn/version "0.10.3"}
org.clojure/clojurescript {:mvn/version "1.11.132"}
speclj/speclj {:mvn/version "3.4.8"}
}
:extra-paths ["dev" "spec/clj" "spec/cljc"]}
:spec {:main-opts ["-m" "speclj.main" "-c"]}
:cljs {:main-opts ["-m" "cljs"]}
:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.3"}
clj-commons/pomegranate {:mvn/version "1.2.24"}}
:ns-default build
:extra-paths ["dev"]}
:antq {:deps {com.github.liquidz/antq {:mvn/version "2.8.1201"}}
:main-opts ["-m" "antq.core"]}
}
}