-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
25 lines (25 loc) · 921 Bytes
/
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
(defproject moon-dweller "0.1.4"
:description "Moon Dweller: An out of this world text-based adventure."
:url "http://moondweller.io/"
:min-lein-version "2.1.2"
:dependencies [[org.clojure/clojure "1.7.0-beta3"]
[org.clojure/clojurescript "0.0-3269"]
[compojure "1.4.0"]
[hiccup "1.0.5"]
[prismatic/dommy "1.1.0"]
[ring/ring-defaults "0.1.5"]]
:plugins [[lein-ring "0.9.7"]
[lein-beanstalk "0.2.7"]
[lein-cljsbuild "1.1.2"]]
:cljsbuild {
:builds [{
:source-paths ["src-cljs"]
:compiler {
:output-to "resources/public/js/main.js"
:optimizations :advanced
:pretty-print false}}]}
:ring {:handler moon-dweller.handler/app
:port 3010}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}})