-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
41 lines (36 loc) · 1.63 KB
/
project.clj
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
(defproject efisef/ensorcel "0.3.3-5"
:description "Easier client / server interactions for Clojure[script]"
:url "https://github.com/efisef/ensorcel"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/data.json "0.2.6"]
[metosin/ring-http-response "0.9.0"]
[metosin/spec-tools "0.7.1"]
[bidi "2.1.3"]
[http-kit "2.2.0"]
[ring "1.6.3"]
[ring/ring-defaults "0.3.2"]
[ring/ring-json "0.4.0"]
[ring-cors "0.1.12"]
[org.clojure/test.check "0.10.0-alpha3"]
[org.clojure/clojurescript "1.10.238" :scope "provided"]
[cljs-http "0.1.45"]
[re-frame "0.10.5"]]
:source-paths ["src/clj"
"src/cljc"
"src/cljs"]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.8"]]
:jvm-opts ["--add-modules" "java.xml.bind"]
:cljsbuild {:builds
[{:id "dev"
:source-paths ["src/cljc" "src/cljs"]
:compiler {:output-to "resources/private/js/ensorcel.js"
:optimizations :none}}
{:id "test"
:source-paths ["src/cljc" "src/cljs" "test/cljs" "test/cljc"]
:compiler {:output-to "resources/private/js/unit-test.js"
:main ensorcel.runner
:optimizations :none}}]}
:profiles {:test {:source-paths ["src/clj" "test/clj" "test/cljc"]}})