forked from dvcrn/markright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (17 loc) · 783 Bytes
/
Copy pathproject.clj
File metadata and controls
19 lines (17 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject markright "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "https://github.com/dvcrn/markright/"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.145"
:exclusions [org.apache.ant/ant]]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.omcljs/om "1.0.0-alpha22"]
[com.cemerick/piggieback "0.2.1"]
[org.clojure/tools.nrepl "0.2.10"]
[figwheel "0.4.0"]]
:source-paths ["src/cljs"
"src/clj"]
:profiles {:dev {:source-paths ["src/dev"]
:dependencies [[thheller/shadow-devtools "0.1.31"]
[thheller/shadow-build "1.0.161"]]}}
)