-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
29 lines (29 loc) · 1.35 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 transmorphic "0.1"
:description "A Morphic centered around immutable views, but still allowing to evolve applications through direct manipulation."
:license {:name "Eclipse Public License",
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-4"]]
:source-paths ["src/clj" "src/cljs" "src/cljc" "test"]
:cljsbuild {:builds {:main {:source-paths ["src/clj" "src/cljs" "src/cljc" "test"]
:compiler {:optimizations :none
:cache-analysis true
:output-dir "target/out"
:output-to "target/cloxp-cljs.js"}}}
:test-commands {"unit-tests" ["phantomjs" :runner "target/cloxp-cljs.js"]}}
:dependencies
[[cljsjs/react-dom "0.14.3-1"]
[cljsjs/react-dom-server "0.14.3-0"]
[figwheel-sidecar "0.5.0-4"]
[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.rksm/cloxp-com "0.1.9-SNAPSHOT"]
[org.omcljs/om "1.0.0-alpha22"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[cljs-tooling "0.1.7"]
[http-kit "2.1.19"]
[ring "1.4.0"]
[fogus/ring-edn "0.3.0"]
[binaryage/devtools "0.5.2"]
[org.clojure/tools.reader "1.0.0-alpha1"]]
:main cljs-morphic.server/start-server)