-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
52 lines (45 loc) · 2.06 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
{:paths
["resources" "src"]
:deps
{org.clojure/clojure {:mvn/version "RELEASE"}
org.clojure/tools.deps.alpha {:git/url "https://github.com/clojure/tools.deps.alpha.git"
:sha "d0b33e0d346736aa985c150145b332f97b92135e"}
org.clojure/clojurescript {:mvn/version "RELEASE"}
mount {:mvn/version "0.1.16"}
medley {:mvn/version "1.1.0"} ; needed?
aleph {:mvn/version "0.4.6"}
ring/ring-core {:mvn/version "1.7.1"}
ring-oauth2 {:mvn/version "0.1.4"}
ring/ring-defaults {:mvn/version "0.3.2"}
cljs-http {:mvn/version "0.1.46"}
com.cognitect/transit-clj {:mvn/version "0.8.313"}
com.cognitect/transit-cljs {:mvn/version "0.8.256"}
bidi {:mvn/version "2.1.6"} ; needed?
garden {:mvn/version "1.3.9"} ; needed?
uix.core {:local/root "../clojure/uix/core"}
uix.dom {:local/root "../clojure/uix/dom"}
den1k/shortcuts {:git/url "https://github.com/den1k/shortcuts"
:sha "871cc945bc5d6f6af4b1a46e5918c36e3d4f1949"}
;; if using SNAPSHOT version, pull https://github.com/juxt/crux and lein install
juxt/crux-core {:mvn/version "19.07-1.3.0-alpha"}
juxt/crux-rocksdb {:mvn/version "19.07-1.3.0-alpha"}
;; utils
org.tcrawley/dynapath {:mvn/version "1.0.0"}
camel-snake-kebab {:mvn/version "0.4.0"}
appliedscience/js-interop {:mvn/version "0.1.20"}
kitchen-async {:mvn/version "0.1.0-SNAPSHOT"}
zprint {:mvn/version "0.4.16"}
}
:aliases
{:dev
{:extra-paths ["dev"]}
:dev/cljs
{:extra-deps
{thheller/shadow-cljs {:mvn/version "2.8.42"}
binaryage/devtools {:mvn/version "0.9.10"}}}
:depstar
{:extra-deps
{seancorfield/depstar {:mvn/version "0.3.1"}}}}
:test
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "RELEASE"}}}}