0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00
penpot/profiles.clj

57 lines
1.8 KiB
Clojure
Raw Normal View History

2015-06-18 12:35:50 -05:00
{
;; Development dependencies
:dev
{:dependencies [[org.clojure/tools.namespace "0.2.11"]
[figwheel-sidecar "0.5.0-2" :scope "test"]]
;; :plugins [[lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]]]
:clean-targets ^{:protect false} ["resources/public/js" "target"]
:env {:config "config.edn"}}
;; Common dependencies
:common
{:dependencies [[org.clojure/clojure "1.7.0"]
2015-12-16 11:08:28 -05:00
[funcool/cats "1.2.1"]]}
2015-06-18 12:35:50 -05:00
;; Backend profile
:back
[:common
2015-12-21 12:16:39 -05:00
{:source-paths ["backend"]
2015-06-18 12:35:50 -05:00
:test-paths ["test/backend"]
:dependencies [[org.clojure/clojure "1.7.0" :scope "provided"]
[org.slf4j/slf4j-simple "1.7.12" :scope "provided"]
[com.stuartsierra/component "0.3.0"]
2016-01-08 14:16:41 -05:00
[funcool/catacumba "0.10.0"]
2015-06-18 12:35:50 -05:00
[jarohen/nomad "0.7.2" :exclusions [org.clojure/tools.reader]]
[danlentz/clj-uuid "0.1.6"]
[com.datomic/datomic-free "0.9.5302"
:exclusions [commons-codec joda-time]]
[environ "1.0.1"]
[aleph "0.4.0"]]}]
;; Frontend profile
:front
[:common
2015-12-21 12:16:39 -05:00
{:source-paths ["frontend"]
2015-06-18 12:35:50 -05:00
:test-paths ["test/frontend"]
2016-01-08 14:16:41 -05:00
:dependencies [[org.clojure/clojurescript "1.7.228"]
[funcool/cuerdas "0.7.1"]
2015-12-24 12:36:49 -05:00
[rum "0.6.0" :exclusions [sablono]]
2016-01-12 03:32:27 -05:00
[sablono "0.5.3"]
2015-12-24 12:36:49 -05:00
[cljsjs/react "0.14.3-0"]
[cljsjs/react-dom "0.14.3-1"]
[cljsjs/react-dom-server "0.14.3-0"]
2015-12-29 16:37:51 -05:00
[bouncer "1.0.0"]
2016-01-08 14:16:41 -05:00
[funcool/promesa "0.7.0"]
[funcool/beicon "0.5.1"]
2015-06-18 12:35:50 -05:00
[cljsjs/moment "2.10.6-0"]
[figwheel-sidecar "0.5.0-2" :scope "test"]
[bidi "1.21.0"]
[funcool/hodgepodge "0.1.4"]]}]}