-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
36 lines (31 loc) · 1.23 KB
/
project.clj
File metadata and controls
36 lines (31 loc) · 1.23 KB
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
(defproject clojure-stack "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ^:replace ["-Xmx1g" "-server"]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-2156"]
[ring/ring "1.2.1"]
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[om "0.5.0"]
[om-sync "0.1.0"]
[compojure "1.1.6"]
[fogus/ring-edn "0.2.0"]
[korma "0.3.0-RC5"]
[lobos "1.0.0-beta1"]
[com.h2database/h2 "1.3.170"]
[cljs-uuid "0.0.4"]]
:plugins [[lein-cljsbuild "1.0.2"]
[lein-lobos "1.0.0-beta1"]]
:source-paths ["src/clj" "src/cljs"]
:resource-paths ["resources"]
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/clj" "src/cljs"]
:compiler {
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js/out"
:optimizations :none
:source-map true}}]}
:main clojure-stack.core)