2015-06-18 19:35:50 +02:00
|
|
|
(defproject uxbox "0.1.0-SNAPSHOT"
|
2016-03-03 23:47:46 +02:00
|
|
|
:description "UXBox UI"
|
2015-06-18 19:35:50 +02:00
|
|
|
:url "http://uxbox.github.io"
|
2016-03-03 23:47:46 +02:00
|
|
|
:license {:name "MPL 2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"}
|
2016-01-19 22:40:32 +02:00
|
|
|
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
|
2016-01-12 16:54:31 +02:00
|
|
|
|
2016-04-07 22:51:40 +03:00
|
|
|
:source-paths ["src" "vendor"]
|
|
|
|
:test-paths ["test"]
|
|
|
|
|
|
|
|
:profiles {:dev {:source-paths ["dev"]}}
|
|
|
|
|
2016-11-27 21:54:09 +01:00
|
|
|
:dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"]
|
2017-03-08 16:58:00 +01:00
|
|
|
[org.clojure/clojurescript "1.9.495" :scope "provided"]
|
2016-06-04 16:02:35 +03:00
|
|
|
|
|
|
|
;; Build
|
2017-02-22 17:00:01 +01:00
|
|
|
[figwheel-sidecar "0.5.9" :scope "provided"]
|
2017-02-21 11:24:28 +01:00
|
|
|
[environ "1.1.0"]
|
2016-06-04 16:02:35 +03:00
|
|
|
|
2017-02-21 11:24:28 +01:00
|
|
|
;; Runtime
|
2016-06-22 22:18:25 +03:00
|
|
|
[com.cognitect/transit-cljs "0.8.239"]
|
2017-04-08 18:30:03 +02:00
|
|
|
|
|
|
|
[funcool/rumext "1.0.0"]
|
2017-01-31 16:54:21 +01:00
|
|
|
[rum "0.10.8" :exclusions [cljsjs/react cljsjs/react-dom]]
|
2017-04-08 18:30:03 +02:00
|
|
|
[cljsjs/react "15.5.0-0"]
|
|
|
|
[cljsjs/react-dom "15.5.0-0"]
|
|
|
|
[cljsjs/react-dom-server "15.5.0-0"]
|
2017-01-31 16:54:21 +01:00
|
|
|
|
2017-03-14 21:13:00 +01:00
|
|
|
[funcool/beicon "3.2.0"]
|
2017-03-08 16:58:00 +01:00
|
|
|
[funcool/bide "1.4.0"]
|
2017-02-22 17:00:01 +01:00
|
|
|
[funcool/cuerdas "2.0.3"]
|
2017-03-08 16:58:00 +01:00
|
|
|
[funcool/lentes "1.2.0"]
|
2017-03-14 21:13:00 +01:00
|
|
|
[funcool/potok "2.1.0"]]
|
2016-05-22 20:46:32 +03:00
|
|
|
:plugins [[lein-ancient "0.6.10"]]
|
2016-01-12 16:54:31 +02:00
|
|
|
:clean-targets ^{:protect false} ["resources/public/js" "target"]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-06-18 19:35:50 +02:00
|
|
|
|