forked from tommy-mor/llm-history
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
41 lines (32 loc) · 2 KB
/
Copy pathdeps.edn
File metadata and controls
41 lines (32 loc) · 2 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
41
{:deps {com.hyperfiddle/electric {:git/url "https://github.com/hyperfiddle/electric"
:git/sha "51de4f5f81ebe17a5df406262b17b1c07cee15be"}
missionary/missionary {:mvn/version "b.34"}
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"}
cheshire/cheshire {:mvn/version "5.12.0"}
clj-http/clj-http {:mvn/version "3.12.3"}
selmer {:mvn/version "1.12.59"}
duratom/duratom {:mvn/version "0.5.9"}
dorothy/dorothy {:mvn/version "0.0.6"}
}
: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
}
}