-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
deps.edn
80 lines (80 loc) · 3.11 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{:paths ["src" "resources"]
:deps
{com.cognitect/transit-clj {:mvn/version "1.0.333"}
com.cognitect/transit-cljs {:mvn/version "0.8.280"}
org.clojure/data.json {:mvn/version "2.4.0"}
http-kit/http-kit {:mvn/version "2.7.0"}
com.google.code.gson/gson {:mvn/version "2.10.1"}}
:deps/prep-lib
{:ensure "resources/portal"
:alias :build
:fn prep}
:aliases
{:dev
{:extra-paths ["dev" "test"]
:extra-deps
{babashka/process {:mvn/version "0.5.22"}
hiccup/hiccup {:mvn/version "2.0.0-RC3"}
io.aviso/pretty {:mvn/version "1.4.4"}
io.github.clojure/tools.build {:git/tag "v0.10.5"
:git/sha "2a21b7a"
:exclusions [com.google.guava/guava]}
io.github.djblue/tetris {:git/url "https://github.com/djblue/tetris.git"
:git/sha "d40ae6b96f918ab7bb7f09ac071f77ca086e8b7f"}}}
:plk
{:extra-deps {planck/planck {:mvn/version "2.27.0"}}}
:cljs
{:extra-deps
{org.clojure/clojurescript {:mvn/version "1.11.132"}
lambdaisland/deep-diff2 {:mvn/version "2.11.216"}
org.babashka/sci {:mvn/version "0.8.43"}
reagent/reagent {:mvn/version "1.2.0"}
io.github.babashka/sci.configs
{:git/url "https://github.com/babashka/sci.configs"
:git/sha "b87302d5569852ce4410271d089bc4cc3da7050a"}}}
:shadow
{:jvm-opts ["-Xss16m"]
:extra-deps
{thheller/shadow-cljs {:mvn/version "2.28.20"}}}
:build
{:extra-paths ["src" "dev" "resources"]
:ns-default tasks.build
:extra-deps {babashka/babashka {:mvn/version "1.3.191"}
babashka/fs {:mvn/version "0.5.22"}
;; need to duplicate main deps here for prep build
com.cognitect/transit-clj {:mvn/version "1.0.333"}
com.cognitect/transit-cljs {:mvn/version "0.8.280"}
org.clojure/data.json {:mvn/version "2.5.0"}
http-kit/http-kit {:mvn/version "2.7.0"}
com.google.code.gson/gson {:mvn/version "2.10.1"}}}
:deploy
{:replace-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:exec-fn deps-deploy.deps-deploy/deploy}
:edn {:main-opts ["-m" "portal.main" "edn"]}
:json {:main-opts ["-m" "portal.main" "json"]}
:kondo
{:extra-paths ["dev"]
:main-opts ["-m" "tasks.kondo"]
:extra-deps {clj-kondo/clj-kondo {:mvn/version "2024.08.01"}}}
:cljfmt
{:main-opts ["-m" "cljfmt.main"]
:extra-deps {cljfmt/cljfmt {:mvn/version "0.9.2"}}}
:cider
{:extra-deps
{nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.3"}}}
:check
{:extra-paths ["dev"]
:main-opts ["-m" "tasks.load"]}
:test
{:extra-paths ["test"]
:extra-deps
{babashka/clj-http-lite
{:git/url "https://github.com/babashka/clj-http-lite.git"
:sha "6ad6d6333d2e9baf1644a870072c12f206a9b722"}}}
:antq
{:replace-deps
{com.github.liquidz/antq {:mvn/version "2.9.1221"}
org.slf4j/slf4j-nop {:mvn/version "2.0.16"}}}
:yaml
{:extra-deps {clj-commons/clj-yaml {:mvn/version "1.0.27"}}}}}