2015-06-18 19:35:50 +02:00
|
|
|
(defproject uxbox "0.1.0-SNAPSHOT"
|
|
|
|
:description "UXBox client"
|
|
|
|
:url "http://uxbox.github.io"
|
2016-01-12 16:54:31 +02:00
|
|
|
:license {:name "" :url ""}
|
2016-01-19 22:40:32 +02:00
|
|
|
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
|
2016-01-12 16:54:31 +02:00
|
|
|
|
2016-01-19 22:40:32 +02:00
|
|
|
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
|
2016-01-12 16:54:31 +02:00
|
|
|
[org.clojure/clojurescript "1.7.228" :scope "provided"]
|
2016-02-19 18:47:21 +02:00
|
|
|
[figwheel-sidecar "0.5.0-6" :scope "test"]
|
2016-01-12 16:54:31 +02:00
|
|
|
|
|
|
|
;; runtime
|
|
|
|
[rum "0.6.0" :exclusions [sablono]]
|
2016-02-19 18:47:21 +02:00
|
|
|
[sablono "0.6.2"]
|
2016-01-12 16:54:31 +02:00
|
|
|
[cljsjs/react "0.14.3-0"]
|
|
|
|
[cljsjs/react-dom "0.14.3-1"]
|
2016-02-19 18:47:21 +02:00
|
|
|
[cljsjs/moment "2.10.6-2"]
|
2016-02-27 11:27:28 +02:00
|
|
|
[funcool/postal "0.5.0"]
|
|
|
|
[funcool/lentes "1.0.0"]
|
2016-02-14 19:24:39 +02:00
|
|
|
[funcool/promesa "0.8.1"]
|
2016-01-28 20:21:27 +02:00
|
|
|
[funcool/beicon "0.6.1"]
|
2016-01-12 16:54:31 +02:00
|
|
|
[funcool/cuerdas "0.7.1"]
|
|
|
|
[funcool/hodgepodge "0.1.4"]
|
|
|
|
[bouncer "1.0.0"]
|
2016-02-19 18:47:21 +02:00
|
|
|
[bidi "1.25.1"]]
|
|
|
|
:plugins [[lein-ancient "0.6.7"]]
|
2016-01-12 16:54:31 +02:00
|
|
|
:clean-targets ^{:protect false} ["resources/public/js" "target"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
|