-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
57 lines (41 loc) · 2.2 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
{:paths ["src" "resources"]
:deps {
;; https://github.com/clojure/clojure
org.clojure/clojure {:mvn/version "1.11.1"}
;; https://github.com/clojure/clojurescript
org.clojure/clojurescript {:mvn/version "1.11.60"}
org.clojure/spec.alpha {:mvn/version "RELEASE"}
;; com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha2"}
;; pjstadig/humane-test-output {:mvn/version "0.11.0"}
;; lilactown/helix {:mvn/version "0.0.15"}
;; cljs-bean/cljs-bean {:mvn/version "1.6.0"}
;; tick/tick {:mvn/version "0.4.30-alpha"}
;; metosin/malli {:mvn/version "0.4.0"}
;; camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.2"}
;; https://github.com/lilactown/helix
lilactown/helix {:mvn/version "0.2.0"}
;; https://github.com/clj-commons/camel-snake-kebab
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}
;; https://github.com/funcool/promesa
;; Vorsicht! Upgrades nicht kompatibel mit PayPal
funcool/promesa {:mvn/version "10.0.594"}
;; https://github.com/clj-commons/ordered
org.flatland/ordered {:mvn/version "1.15.11"}
;; https://github.com/mfikes/cljs-bean
cljs-bean/cljs-bean {:mvn/version "1.9.0"}
;; https://github.com/juxt/tick
tick/tick {:mvn/version "0.7.5"}
;; https://github.com/metosin/malli
metosin/malli {:mvn/version "0.14.0"}
}
:aliases {
:shadow-cljs
{:extra-paths ["dev" "test"]
:extra-deps {thheller/shadow-cljs {:mvn/version "RELEASE"}
binaryage/devtools {:mvn/version "RELEASE"}
cider/cider-nrepl {:mvn/version "RELEASE"}
expectations/clojure-test {:mvn/version "1.2.1"}}
:main-opts ["-m" "shadow.cljs.devtools.cli"]}
:build-release
{:extra-deps {thheller/shadow-cljs {:mvn/version "RELEASE"}}
:main-opts ["-m" "shadow.cljs.devtools.cli" "release" "spa" "gcf"]}}}