-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeps.edn
31 lines (30 loc) · 2.07 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
{:deps {io.replikativ/datahike {:mvn/version "0.6.1559"}
net.clojars.wkok/openai-clojure {:mvn/version "0.10.0"}
nano-id/nano-id {:mvn/version "1.0.0"}
io.github.nextjournal/markdown {:mvn/version "0.5.144"}
hiccup/hiccup {:mvn/version "2.0.0-RC1"}
markdown-clj/markdown-clj {:mvn/version "1.12.1"}
;; Electric Dependencies
com.hyperfiddle/electric {:git/url "https://github.com/hyperfiddle/electric" :git/sha "b32ac98df7d7ec87f225d47354671be172ffa87e"}
ring/ring {:mvn/version "1.11.0"} ; comes with Jetty
org.clojure/clojure {:mvn/version "1.12.0-alpha5"}
org.clojure/clojurescript {:mvn/version "1.11.121"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
ch.qos.logback/logback-classic {:mvn/version "1.4.14"}}
:paths ["src" "resources"]
:aliases {:dev
{:extra-paths ["src-dev"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.26.2"}
io.github.clojure/tools.build {:mvn/version "0.9.6"
:exclusions [com.google.guava/guava ; Guava version conflict between tools.build and clojurescript.
org.slf4j/slf4j-nop]}}} ; clashes with app logger
:prod
{:extra-paths ["src-prod"]}
:build ; use `clj -X:build build-client`, NOT -T! build/app classpath contamination cannot be prevented
{:extra-paths ["src-build"]
:ns-default build
:extra-deps {thheller/shadow-cljs {:mvn/version "2.26.2"}
io.github.clojure/tools.build {:mvn/version "0.9.6"
:exclusions [com.google.guava/guava ; Guava version conflict between tools.build and clojurescript.
org.slf4j/slf4j-nop]}}} ; clashes with app logger
}}