-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
38 lines (26 loc) · 1.22 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(defproject sketchy ""
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.2.0"]
[ring/ring-devel "1.1.8"]
[compojure "1.1.5"]
[hiccup "1.0.4"]
[prismatic/dommy "0.1.1"]
[org.clojure/core.async "0.1.242.0-44b1e3-alpha"]
[org.clojure/clojurescript "0.0-2014"]
[org.clojure/tools.reader "0.7.10"]
[jarohen/chord "0.2.0"]]
:plugins [[jarohen/lein-frodo "0.2.3"]
[lein-cljsbuild "1.0.0-alpha2"]
[lein-pdo "0.1.1"]]
:frodo/config-resource "sketchy-config.edn"
:source-paths ["src/clj"]
:resource-paths ["resources" "target/resources"]
:cljsbuild {:builds [{:source-paths ["src/cljs"]
:compiler {:output-to "target/resources/public/js/sketchy.js"
:optimizations :whitespace
:pretty-print true}}]}
:aliases {"start-server" ["pdo" "cljsbuild" "auto," "frodo"]})