forked from donut-party/system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
28 lines (24 loc) · 975 Bytes
/
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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.namespace {:mvn/version "1.3.0"}
aysylu/loom {:mvn/version "1.0.2"}
metosin/malli {:mvn/version "0.7.5"}}
:aliases
{:dev
{:extra-deps {ring/ring {:mvn/version "1.9.4"}
djblue/portal {:mvn/version "0.35.1"}}
:extra-paths ["dev" "test"]}
:test
{:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}}
:exec-fn cognitect.test-runner.api/test}
:test-cljs
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "0.9.0"}
olical/cljs-test-runner {:mvn/version "3.8.0"}}
:exec-fn cljs-test-runner.main/-main}
:build
{:deps {io.github.seancorfield/build-clj
{:git/tag "v0.6.6" :git/sha "171d5f1"}}
:ns-default build}}}