-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeps.edn
More file actions
100 lines (87 loc) · 3.96 KB
/
deps.edn
File metadata and controls
100 lines (87 loc) · 3.96 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{:paths ["src" "resources" "target"]
:deps {babashka/fs {:mvn/version "0.5.24"}
babashka/process {:mvn/version "0.6.23"}
borkdude/rewrite-edn {:mvn/version "0.4.9"}
buddy/buddy-auth {:mvn/version "3.0.323"}
buddy/buddy-hashers {:mvn/version "2.0.167"}
com.taoensso/telemere {:mvn/version "1.0.0"}
com.taoensso/telemere-slf4j {:mvn/version "1.0.0"}
com.cognitect/transit-clj {:mvn/version "1.0.333"}
com.github.seancorfield/honeysql {:mvn/version "2.7.1295"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1002"}
danlentz/clj-uuid {:mvn/version "0.2.0"}
hiccup/hiccup {:mvn/version "2.0.0-RC5"}
io.github.rads/dependency {:mvn/version "1.0.0-1"}
io.github.rads/inflections {:mvn/version "0.14.2-1"}
io.github.rads/migrate {:mvn/version "0.0.1"}
markdown-clj/markdown-clj {:mvn/version "1.12.3"}
medley/medley {:mvn/version "1.4.0"}
metosin/jsonista {:mvn/version "0.3.13"}
metosin/malli {:mvn/version "0.17.0"}
metosin/muuntaja {:mvn/version "0.6.11"}
metosin/reitit-core {:mvn/version "0.8.0"}
metosin/reitit-middleware {:mvn/version "0.8.0"}
metosin/reitit-ring {:mvn/version "0.8.0"}
nrepl/nrepl {:mvn/version "1.3.1"}
org.babashka/cli {:mvn/version "0.8.65"}
org.babashka/http-client {:mvn/version "0.4.22"}
org.babashka/json {:mvn/version "0.1.6"
:exclusions [org.clojure/data.json]}
org.clojure/core.cache {:mvn/version "1.1.234"}
org.clojure/clojure {:mvn/version "1.12.1"}
org.slf4j/slf4j-api {:mvn/version "2.0.17"}
org.xerial/sqlite-jdbc {:mvn/version "3.49.1.0"}
rewrite-clj/rewrite-clj {:mvn/version "1.1.49"}
ring/ring-core {:mvn/version "1.14.1"}
ring/ring-defaults {:mvn/version "0.6.0"}
ring/ring-jetty-adapter {:mvn/version "1.14.1"}
version-clj/version-clj {:mvn/version "2.0.3"}}
:aliases
{:neil
{:project {:version "0.2.0-SNAPSHOT"
:name dev.rpub/rpub}}
:flowstorm
{:extra-deps {com.github.flow-storm/flow-storm-inst {:mvn/version "4.4.6"}}}
:build
{:deps {io.github.clojure/tools.build {:mvn/version "0.10.8"}}
:ns-default build}
:deps-deploy
{:extra-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default rpub.dev.tasks.deploy}
:common
{:jvm-opts ["-Dbabashka.json.provider=metosin/jsonista"
"-Dclojure.tools.logging.to-telemere=true"
"-Dslf4j.internal.verbosity=ERROR"]}
:otel
{:extra-deps {com.github.steffan-westcott/clj-otel-api
{:mvn/version "0.2.8"}}}
:app
{:replace-paths []
:replace-deps {dev.rpub/app {:local/root "data"}}
:main-opts ["-m" "app"]}
:default-plugins
{:extra-deps {dev.rpub/plugins.external-editing
{:git/url "https://github.com/rpub-clj/plugins.git"
:git/sha "258400b2669cd5ef16c489eef8d5a3a706c27045"
:deps/root "plugins/external-editing"}
dev.rpub/plugins.starter-theme
{:git/url "https://github.com/rpub-clj/plugins.git"
:git/sha "258400b2669cd5ef16c489eef8d5a3a706c27045"
:deps/root "plugins/starter-theme"}}}
:dev
{:replace-paths ["src" "target" "resources" "dev"]
:extra-deps {metosin/reitit-dev {:mvn/version "0.8.0"}
prone/prone {:mvn/version "2021-04-23"}
io.github.paintparty/bling {:mvn/version "0.5.2"}
zprint/zprint {:mvn/version "1.2.9"}}
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}
:test
{:extra-paths ["test"]
:extra-deps {clj-commons/clj-yaml {:mvn/version "1.0.29"}
etaoin/etaoin {:mvn/version "1.1.42"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}}
:main-opts ["-m" "cognitect.test-runner"]
:exec-fn cognitect.test-runner.api/test}
:prod
{}}}