-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
47 lines (38 loc) · 2.18 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
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
org.clojure/core.async {:mvn/version "1.3.610"}
org.clojure/java.classpath {:mvn/version "1.0.0"}
compojure/compojure {:mvn/version "1.6.1"}
http-kit/http-kit {:mvn/version "2.4.0"}
reagent/reagent {:mvn/version "0.10.0"}
ring/ring-core {:mvn/version "1.8.1"}
ring/ring-devel {:mvn/version "1.8.1"}}
:paths ["src" "resources"]
;; Aliases for common commands.
:aliases {;; Get the figwheel deps used in multiple commands.
:fig {:extra-deps {com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
com.bhauman/figwheel-main {:mvn/version "0.2.11"}}
:extra-paths ["target" "test"]}
;; Clojure unit testing.
:test-clj {:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.641"}}
:main-opts ["-m" "kaocha.runner"]}
;; ClojureScript unit testing.
:test-cljs {:main-opts ["-m"
"figwheel.main"
"-co"
"test.cljs.edn"
"-m"
"fwm-example.client.test-runner"]}
;; Clean (erase) all of the output artifacts.
:clean {:main-opts ["scripts/clean.clj"]}
;; Find out of date dependencies.
:ancient {:extra-deps {olical/depot {:mvn/version "2.0.1"}}
:main-opts ["-m" "depot.outdated.main" "--every"]}
;; Start up a development environment.
:dev {:main-opts ["scripts/dev.clj"]}
;; Start up a development build with a ClojureScript REPL.
:repl {:main-opts ["scripts/repl.clj"]}
;; Build an uberjar.
:prod {:extra-deps {leiningen/leiningen {:mvn/version "2.9.4"}}
:main-opts ["scripts/prod.clj"]}}}