aretherecookies-server/project.clj
2020-04-12 14:06:37 -05:00

29 lines
1.2 KiB
Clojure

(defproject aretherecookies "0.1.0-SNAPSHOT"
:description "where cookies can be found"
:url "http://www.aretherecookies.com"
:min-lein-version "2.0.0"
:main aretherecookies.app
:dependencies [[org.clojure/clojure "1.8.0"]
[environ "1.1.0"]
[compojure "1.5.1"]
[ring/ring-defaults "0.2.1"]
[org.clojure/java.jdbc "0.7.3"]
[org.postgresql/postgresql "42.2.2"]
[com.mchange/c3p0 "0.9.5.2"]
[ring-middleware-format "0.7.2"]
[org.clojure/data.json "0.2.6"]
[ring/ring-json "0.4.0"]
[ring/ring-mock "0.3.1"]
[ring/ring-jetty-adapter "1.4.0"]
[com.layerware/hugsql "0.5.1"]
[buddy/buddy-auth "2.1.0"]
[clj-http "3.7.0"]
[amazonica "0.3.121"]
[enlive "1.1.6"]]
:plugins [[lein-ring "0.9.7"] [lein-environ "1.1.0"]]
:ring {:handler aretherecookies.app/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]]}
:uberjar {:aot :all}}
:uberjar-name "aretherecookies.jar")