0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-26 00:19:07 -05:00
penpot/project.clj

39 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-04-07 22:51:40 +03:00
:source-paths ["src" "vendor"]
:test-paths ["test"]
:profiles {:dev {:source-paths ["dev"]}}
2016-09-22 22:15:45 +03:00
:dependencies [[org.clojure/clojure "1.9.0-alpha12" :scope "provided"]
[org.clojure/clojurescript "1.9.229" :scope "provided"]
2016-06-04 16:02:35 +03:00
;; Build
2016-09-22 22:15:45 +03:00
[figwheel-sidecar "0.5.7" :scope "test"]
2016-06-04 16:02:35 +03:00
;; runtime
2016-06-22 22:18:25 +03:00
[com.cognitect/transit-cljs "0.8.239"]
[rum "0.10.6"]
[cljsjs/react "15.3.1-0"]
[cljsjs/react-dom "15.3.1-0"]
[cljsjs/react-dom-server "15.3.1-0"]
2016-04-13 19:37:45 +03:00
[cljsjs/moment "2.10.6-4"]
2016-06-30 16:33:23 +03:00
[funcool/struct "1.0.0"]
2016-06-22 22:18:25 +03:00
[funcool/lentes "1.1.0"]
[funcool/httpurr "0.6.2"]
[funcool/promesa "1.5.0"]
[funcool/beicon "2.3.0"]
2016-09-22 22:15:45 +03:00
[funcool/cuerdas "1.0.2"]
[funcool/bide "1.0.4"]]
2016-05-22 20:46:32 +03:00
:plugins [[lein-ancient "0.6.10"]]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
)
2015-06-18 19:35:50 +02:00