sketchbook/project.clj

18 lines
692 B
Clojure
Raw Permalink Normal View History

2018-03-27 13:00:21 +00:00
(defproject sketchbook.jeremydormitzer.com "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:source-paths ["src_clj"]
:dependencies [[org.clojure/clojure "1.8.0"]
[compojure "1.6.0"]
[ring/ring-defaults "0.3.1"]
[ring-server "0.5.0"]
2018-04-01 14:08:03 +00:00
[ring/ring-json "0.4.0"]
2018-03-27 13:00:21 +00:00
[org.apache.commons/commons-math3 "3.6.1"]
[org.clojure/core.async "0.4.474"]
[quil "2.6.0"]
2018-04-09 10:35:00 +00:00
[hiccup "1.0.5"]
[garden "1.3.5"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler sketchbook.handler/app})