1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
DotDeploy/project.clj

22 lines
953 B
Clojure
Raw Permalink Normal View History

2014-05-17 12:56:39 -07:00
(defproject dotdeploy "0.1.0-SNAPSHOT"
:description "API for the DotDeploy website. Synchronize your dotfiles across all your computer"
2014-05-17 12:56:39 -07:00
:url "http://dotdeploy.works"
:license {:name "Apache 2 License"
:url "http://www.apache.org/licenses"}
:dependencies [[org.clojure/clojure "1.6.0"]
2014-05-17 13:46:21 -07:00
[compojure "1.1.8"]
[clj-time "0.7.0"]
[prismatic/schema "0.2.4"]
2014-05-17 13:46:21 -07:00
[ring-middleware-format "0.3.2"]
[ring/ring-json "0.3.1"]
[com.taoensso/timbre "3.2.1"]
[com.novemberain/monger "2.0.0"]
2014-05-17 13:46:21 -07:00
[com.novemberain/validateur "2.1.0"]
[slingshot "0.10.3"]
[clj-http "0.9.2"]
2014-05-17 13:46:21 -07:00
[uri "1.1.0"]
[org.clojure/data.json "0.2.5"]]
:plugins [[lein-ring "0.8.10"]]
2014-05-17 13:46:21 -07:00
:ring {:handler dotdeploy.handler/app}
:profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}})