2015-06-18 12:35:50 -05:00
|
|
|
(defproject uxbox "0.1.0-SNAPSHOT"
|
2016-03-03 16:47:46 -05:00
|
|
|
:description "UXBox UI"
|
2015-06-18 12:35:50 -05:00
|
|
|
:url "http://uxbox.github.io"
|
2016-03-03 16:47:46 -05:00
|
|
|
:license {:name "MPL 2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"}
|
2016-01-19 15:40:32 -05:00
|
|
|
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
|
2016-01-12 09:54:31 -05:00
|
|
|
|
2016-04-07 14:51:40 -05:00
|
|
|
:source-paths ["src" "vendor"]
|
|
|
|
:test-paths ["test"]
|
|
|
|
|
|
|
|
:profiles {:dev {:source-paths ["dev"]}}
|
|
|
|
|
2016-06-04 08:02:35 -05:00
|
|
|
:dependencies [[org.clojure/clojure "1.9.0-alpha4" :scope "provided"]
|
|
|
|
[org.clojure/clojurescript "1.9.36" :scope "provided"]
|
|
|
|
|
|
|
|
;; Build
|
2016-05-22 12:46:32 -05:00
|
|
|
[figwheel-sidecar "0.5.3-2" :scope "test"]
|
2016-06-04 08:02:35 -05:00
|
|
|
[com.cognitect/transit-clj "0.8.285"]
|
|
|
|
|
2016-01-12 09:54:31 -05:00
|
|
|
|
|
|
|
;; runtime
|
2016-03-15 13:49:42 -05:00
|
|
|
[com.cognitect/transit-cljs "0.8.237"]
|
2016-06-04 08:02:35 -05:00
|
|
|
[rum "0.9.0"]
|
2016-05-22 12:46:32 -05:00
|
|
|
[cljsjs/react "15.1.0-0"]
|
|
|
|
[cljsjs/react-dom "15.1.0-0"]
|
2016-04-13 11:37:45 -05:00
|
|
|
[cljsjs/moment "2.10.6-4"]
|
2016-04-22 12:44:52 -05:00
|
|
|
[funcool/struct "0.1.0"]
|
2016-03-19 16:46:59 -05:00
|
|
|
[funcool/lentes "1.0.1"]
|
2016-05-10 16:41:33 -05:00
|
|
|
[funcool/httpurr "0.6.0"]
|
2016-05-22 12:46:32 -05:00
|
|
|
[funcool/promesa "1.2.0"]
|
2016-06-04 08:02:35 -05:00
|
|
|
[funcool/beicon "2.0.0"]
|
2016-04-13 11:37:45 -05:00
|
|
|
[funcool/cuerdas "0.7.2"]
|
2016-05-10 16:41:33 -05:00
|
|
|
[bidi "2.0.9"]]
|
2016-05-22 12:46:32 -05:00
|
|
|
:plugins [[lein-ancient "0.6.10"]]
|
2016-01-12 09:54:31 -05:00
|
|
|
:clean-targets ^{:protect false} ["resources/public/js" "target"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-18 12:35:50 -05:00
|
|
|
|