-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 970 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject studio_six_ten_dot_com "0.1.0-SNAPSHOT"
:description "Source repository of the official Studio Six-Ten I.D. Inc. web site."
:url "http://studio-six-ten.com"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2322"]
[org.clojure/core.async "0.1.319.0-6b1aca-alpha"]
[compojure "1.1.8"]
[ring/ring-devel "1.3.1"]
[ring/ring-core "1.3.1"]
[http-kit "2.1.16"]
[jayq "2.5.2"]]
:main studio_six_ten_dot_com.handler
:plugins [[lein-cljsbuild "1.0.3"]]
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}}
:cljsbuild {:builds [{:source-paths ["src-cljs"]
:compiler {:output-to "resources/public/main.js"
:optimizations :simple
:pretty-print true}}]})