0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 16:30:37 -05:00
penpot/frontend/project.clj
2017-02-22 11:11:24 +01:00

40 lines
1.3 KiB
Clojure

(defproject uxbox "0.1.0-SNAPSHOT"
:description "UXBox UI"
:url "http://uxbox.github.io"
:license {:name "MPL 2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"}
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
:source-paths ["src" "vendor"]
:test-paths ["test"]
:profiles {:dev {:source-paths ["dev"]}}
:dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"]
[org.clojure/clojurescript "1.9.293" :scope "provided"]
;; Build
[figwheel-sidecar "0.5.9" :scope "provided"]
[environ "1.1.0"]
;; Runtime
[com.cognitect/transit-cljs "0.8.239"]
[rum "0.10.8" :exclusions [cljsjs/react cljsjs/react-dom]]
;; [cljsjs/react-with-addons "15.4.2-2"]
[cljsjs/react "15.4.2-2"]
[cljsjs/react-dom "15.4.2-2"]
[cljsjs/react-dom-server "15.4.2-2"]
[cljsjs/moment "2.17.1-0"]
[funcool/potok "2.0.0"]
[funcool/struct "1.0.0"]
[funcool/lentes "1.2.0"]
[funcool/beicon "3.1.0"]
[funcool/cuerdas "2.0.3"]
[funcool/bide "1.4.0"]]
:plugins [[lein-ancient "0.6.10"]]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
)