generated from bzg/choices
-
Notifications
You must be signed in to change notification settings - Fork 11
/
deps.edn
63 lines (53 loc) · 2.81 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
{:version "2020-04-06"
:description "Documentation de l'algorithme d'orientation COVID19"
:url "https://github.com/Delegation-numerique-en-sante/covid19-algorithme-orientation"
:license {:name "Eclipse Public License - v 2.0"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:deps
{
cheshire {:mvn/version "5.10.0"}
cljsjs/clipboard {:mvn/version "2.0.4-0"}
com.bhauman/figwheel-main {:mvn/version "0.2.3"}
com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
com.taoensso/tempura {:mvn/version "1.2.1"}
io.forward/yaml {:mvn/version "1.0.10"}
markdown-to-hiccup {:mvn/version "0.6.2"}
metosin/reitit-frontend {:mvn/version "0.3.10"}
org.clojure/clojure {:mvn/version "1.10.1"}
org.clojure/core.logic {:mvn/version "1.0.0"}
org.clojure/clojurescript {:mvn/version "1.10.597"}
org.clojure/core.rrb-vector {:mvn/version "0.1.1"}
org.clojure/math.numeric-tower {:mvn/version "0.0.4"}
org.clojure/test.check {:mvn/version "1.0.0"}
org.flatland/ordered {:mvn/version "1.5.7"}
reagent {:mvn/version "0.10.0"}
reagent-utils {:mvn/version "0.3.3"}
}
:paths ["test" "src" "src/clj" "src/cljs" "resources"]
:aliases
{:run {:main-opts ["-m" "choices.server"]}
:jar {:extra-deps {seancorfield/depstar {:mvn/version "RELEASE"}}
:main-opts ["-m" "hf.depstar.uberjar" "choices.jar"
"-C" "-m" "choices.server"]}
:fig {:main-opts ["-m" "figwheel.main" "-b" "dev" "-r"]
:extra-paths ["src/cljs"]}
:js {:main-opts ["-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]
:extra-paths ["src/cljs"]}
:fig-bis {:main-opts ["-m" "figwheel.main" "-b" "dev-bis" "-r"]
:extra-paths ["src/cljs"]}
:js-bis {:main-opts ["-m" "figwheel.main" "-O" "advanced" "-bo" "dev-bis"]
:extra-paths ["src/cljs"]}
:test-config {:extra-paths ["test"]
:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}
:main-opts ["-m" "cognitect.test-runner"
"-d" "test" "-n" "choices.test"]}
;; :test-algo {:extra-paths ["test"]
;; :extra-deps {com.cognitect/test-runner
;; {:git/url "https://github.com/cognitect-labs/test-runner.git"
;; :sha "209b64504cb3bd3b99ecfec7937b358a879f55c1"}}
;; :main-opts ["-m" "cognitect.test-runner"
;; "-d" "test" "-n" "choices.algo"]}
:test-algo {:main-opts ["-m" "choices.algo"]}
}}