-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
54 lines (48 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
(defproject rexster-explorer "0.1.0-SNAPSHOT"
:description "A graphical interface to Rexster graphs"
:url "http://github.com/diegonc/rexster-explorer"
:license {:name "GNU General Public License, version 3"
:url "http://opensource.org/licenses/GPL-3.0"}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.async "0.2.374"]
[org.omcljs/om "0.9.0"]
[prismatic/om-tools "0.3.12"]
[com.cemerick/url "0.1.1"]
[cljs-http "0.1.37"]
[clj-http "2.0.0"]
[compojure "1.4.0"]
[ring "1.4.0"]
[bk/ring-gzip "0.1.1"]
[cljsjs/vis "4.9.0-1"]
[cljsjs/react-burger-menu "1.1.6-0"]
[cljsjs/react-sanfona "0.0.4-0"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-2"]]
:source-paths ["src/clj"]
:main rexster-explorer.server
:clean-targets ^{:protect false} ["resources/public/js/compiled"
"target"]
:profiles {:uberjar {:aot :all
:prep-tasks ["compile" ["cljsbuild" "once" "min"]]}}
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src/cljs"]
:jar true
:figwheel {:websocket-host :js-client-host
:on-jsload "rexster-explorer.core/on-jsload"}
:compiler {:main rexster-explorer.core
:asset-path "js/compiled/out"
:output-to "resources/public/js/compiled/rexster_explorer.js"
:output-dir "resources/public/js/compiled/out"
:source-map-timestamp true}}
{:id "min"
:source-paths ["src/cljs"]
:jar true
:compiler {:main rexster-explorer.core
:output-to "resources/public/js/compiled/rexster_explorer.js"
:optimizations :advanced
:pretty-print false
:source-map-timestamp true}}]}
:figwheel {:css-dirs ["resources/public/css"]
:ring-handler rexster-explorer.server/figwheel-handler})