-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
59 lines (51 loc) · 2.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
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
55
56
57
58
59
(defproject asterion "0.1.0-alpha1"
:description "Make and explore dependency graphs for Clojure(Script) projects."
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.145"]
[org.clojure/tools.namespace "0.3.19-SNAPSHOT"]
[org.clojure/tools.reader "0.10.0-alpha1"]
[org.clojure/data.json "0.2.6"]
[commons-io/commons-io "2.4"]
[environ "1.0.1"]
[com.stuartsierra/component "0.2.3"]
[leiningen-core "2.5.3"]
[clj-jgit "0.8.8"]
[ring "1.3.2"]
[compojure "1.4.0"]
[cljsjs/d3 "3.5.5-3"]
[org.omcljs/om "0.9.0"]
[cljs-ajax "0.5.0"]]
:min-lein-version "2.5.1"
:ring {:handler asterion.server/app-handler}
:cljsbuild
{:builds {:dev {:source-paths ["src/cljs" "env/dev/cljs"]
:figwheel {:on-jsload "asterion.core/init!"}
:compiler {:output-to "resources/public/js/p/app.js"
:output-dir "resources/public/js/p/out"
:asset-path "js/p/out"
:source-map true
:main "asterion.dev"
:verbose true
:optimizations :none
:pretty-print true
:cache-analysis true}}
:production
{:source-paths ["src/cljs" "env/prod/cljs"]
:compiler {:output-to "resources/public/js/p/app.js"
:optimizations :simple
:main "asterion.prod"
:closure-defines {:goog.DEBUG false}}}}}
:clean-targets ^{:protect false} [:target-path "out" "resources/public/js/p"]
:figwheel {:css-dirs ["resources/public/css"]}
:profiles {:dev {:plugins [[lein-ancient "0.6.7"]
[lein-cljsbuild "1.1.0"]
[lein-environ "1.0.1"]
[lein-kibit "0.1.2"]
[lein-ring "0.9.7"]
[lein-cljfmt "0.3.0"]
[lein-beanstalk "0.2.7"]
[lein-figwheel "0.4.1"]]}})