-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.edn
42 lines (42 loc) · 2.72 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
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
org.clojure/clojurescript {:mvn/version "1.10.773"}
reagent/reagent {:mvn/version "1.1.0"
:exclusions
[cljsjs/react cljsjs/react-dom
cljsjs/react-dom-server]}
re-frame/re-frame {:mvn/version "1.2.0"}
day8.re-frame/http-fx {:mvn/version "0.2.3"}
lambdaisland/uri {:mvn/version "1.14.120"}
com.yetanalytics/re-oidc {:mvn/version "0.0.5"
:exclusions
[cljsjs/oidc-client
reagent/reagent
re-frame/re-frame]}
com.yetanalytics/xapi-schema {:mvn/version "1.2.3"}
com.fasterxml.jackson.core/jackson-core {:mvn/version "2.11.4"}
com.fasterxml.jackson.dataformat/jackson-dataformat-smile
{:mvn/version "2.11.4"}
com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
{:mvn/version "2.11.4"}
com.google.protobuf/protobuf-java {:mvn/version "3.16.3"}
com.google.code.gson/gson {:mvn/version "2.8.9"}
org.apache.httpcomponents/httpclient {:mvn/version "4.5.13"}
com.yetanalytics/re-codemirror {:mvn/version "0.0.1"
:exclusions
[org.clojure/clojurescript
reagent/reagent
cljsjs/codemirror]}
com.yetanalytics/lrs-reactions {:mvn/version "0.0.1"
:exclusions
[org.clojure/clojure]}}
:paths ["src" "resources"]
:aliases {:fig {:extra-deps
{com.bhauman/rebel-readline-cljs {:mvn/version "0.1.4"}
com.bhauman/figwheel-main {:mvn/version "0.2.14"}}
:extra-paths ["target" "test"]}
:build {:main-opts ["-m" "figwheel.main" "-b" "dev" "-r"]}
:min {:main-opts ["-m" "figwheel.main" "-O" "advanced" "-bo" "dev"]}
:test {:main-opts ["-m" "figwheel.main" "-co" "test.cljs.edn" "-m" "com.yetanalytics.lrs-admin-ui.test-runner"]}
:dev {:extra-deps
{day8.re-frame/tracing {:mvn/version "0.6.2"}
day8.re-frame/re-frame-10x {:mvn/version "1.2.2"}}}}}