This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
webtools/project.clj

23 lines
835 B
Clojure
Raw Normal View History

2016-04-30 16:17:04 -04:00
(defproject gered/webtools "0.0.2"
2015-01-04 00:11:24 -05:00
:description "Miscellaneous helper functions and macros for Ring and Compojure."
2016-04-30 14:27:37 -04:00
:url "https://github.com/gered/webtools"
2015-01-04 00:11:24 -05:00
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[cheshire "5.5.0"]
[prismatic/schema "1.0.4"]
[cljs-ajax "0.5.5"]
[secretary "1.2.3"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:profiles {:provided
{:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[compojure "1.4.0"]
[ring/ring-core "1.4.0"]]}}
:cljsbuild {:builds
{:main
{:source-paths ["src"]}}})