This repository was archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
29 lines (29 loc) · 1.48 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
(defproject one-rep-max "0.0.1"
:description "To some extent: A ClojureScript + MongoHQ app for tracking workout data. But mostly: Some dude on the internet trying his hand at ClojureScript."
:dependencies [[org.clojure/clojure "1.4.0"]
[ring "1.0.0-RC1"]
[compojure "0.6.4"]
[enlive "1.0.0"]
[org.mozilla/rhino "1.7R3"]
[goog-jar "1.0.0"]
[com.google.javascript/closure-compiler "r1592"]
[org.clojure/google-closure-library "0.0-790"]
[org.clojars.gilbertl/vimclojure "2.1.2"]]
:dev-dependencies [[jline "0.9.94"]
[marginalia "0.7.0-SNAPSHOT"]
[lein-marginalia "0.7.0-SNAPSHOT"]]
:git-dependencies [["https://github.com/clojure/clojurescript.git"
"3ea593825f60c228f6a384be52bcf2fc4e417567"]
["https://github.com/levand/domina.git"
"a328080ca4a754e808454f589caae90fac951d10"]]
:repl-init one.repmax.repl
:source-path "src/app/clj"
:extra-classpath-dirs [".lein-git-deps/clojurescript/src/clj"
".lein-git-deps/clojurescript/src/cljs"
".lein-git-deps/domina/src/cljs"
"src/app/cljs"
"src/app/shared"
"src/app/cljs-macros"
"src/lib/clj"
"src/lib/cljs"
"templates"])