0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 06:58:58 -05:00
penpot/project.clj

33 lines
1.2 KiB
Clojure
Raw Normal View History

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-19 22:40:32 +02:00
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
2016-03-28 17:14:36 +03:00
[org.clojure/clojurescript "1.8.40" :scope "provided"]
[figwheel-sidecar "0.5.2" :scope "test"]
;; runtime
[com.cognitect/transit-cljs "0.8.237"]
[rum "0.6.0" :exclusions [sablono]]
2016-03-27 18:23:39 +03:00
[sablono "0.6.3"]
2016-03-19 12:33:52 +02:00
[cljsjs/react "15.0.0-rc.2-0"]
[cljsjs/react-dom "15.0.0-rc.2-0"]
2016-03-16 21:15:02 +02:00
[cljsjs/moment "2.10.6-3"]
2016-03-19 23:46:59 +02:00
[funcool/lentes "1.0.1"]
2016-03-29 21:45:09 +03:00
[funcool/httpurr "0.6.0-SNAPSHOT"]
2016-03-19 12:33:52 +02:00
[funcool/promesa "1.1.1"]
2016-03-19 17:47:15 +02:00
[funcool/beicon "1.1.1"]
[funcool/cuerdas "0.7.1"]
[funcool/hodgepodge "0.1.4"]
[bouncer "1.0.0"]
2016-03-17 22:22:06 +02:00
[bidi "2.0.4"]]
2016-02-19 18:47:21 +02:00
:plugins [[lein-ancient "0.6.7"]]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
)
2015-06-18 19:35:50 +02:00