-
Notifications
You must be signed in to change notification settings - Fork 39
/
project.clj
45 lines (44 loc) · 1.87 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
39
40
41
42
43
44
45
(defproject kioo "0.5.1-SNAPSHOT"
:description "enlive/enfocus style templating for Facebook's React."
:url "http://github.com/ckirkendall/kioo"
:author "Creighton Kirkendall"
:min-lein-version "2.0.0"
:lein-release {:deploy-via :clojars}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[enlive "1.1.5"]
[cljsjs/react-dom "15.4.0-0"]
[cljsjs/react-dom-server "15.4.0-0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[com.googlecode.htmlcompressor/htmlcompressor "1.5.2"]
[sablono "0.8.0"]
[hickory "0.7.1"]
[org.omcljs/om "0.9.0" :exclusions [cljsjs/react]]
[reagent "0.6.1" :exclusions [cljsjs/react]]
[enlive-ws "0.1.1"]]
:plugins [[lein-cljsbuild "1.1.0"]
[lein-doo "0.1.6"]
[lein-shell "0.4.0"]
[lein-ancient "0.5.4"]
[lein-marginalia "0.8.0"]]
:aliases
{"auto-test"
["do" "clean"
["doo" "phantom" "test"]]}
:cljsbuild {:builds [{:id "dev"
:source-paths ["src" "test"]
:compiler {:output-to "target/dev/kioo.js"
:optimizations :none
:pretty-print true
:source-map true}}
{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/test/kioo.js"
:optimizations :none
:main kioo.test-runner
:pretty-print true
}}]}
:resource-paths ["test-resources"]
:source-paths ["src"]
:test-paths ["test"])