status-react/project.clj

94 lines
6.1 KiB
Clojure
Raw Normal View History

(defproject status-im "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha13"]
2017-07-04 17:53:49 +00:00
[org.clojure/clojurescript "1.9.671"]
[reagent "0.6.0" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server]]
[re-frame "0.9.4"]
[natal-shell "0.3.0"]
2017-07-17 11:18:52 +00:00
[com.andrewmcveigh/cljs-time "0.5.0"]
[tailrecursion/cljs-priority-map "1.2.0"]
2017-07-04 17:53:49 +00:00
[com.taoensso/timbre "4.7.4"]
[com.google.guava/guava "21.0"]]
2017-07-16 15:30:53 +00:00
:plugins [[lein-cljsbuild "1.1.6"]
[lein-figwheel "0.5.11"]
[lein-re-frisk "0.4.7"]
[rasom/lein-externs "0.1.7"]]
:clean-targets ["target/" "index.ios.js" "index.android.js"]
2017-07-16 09:04:35 +00:00
:aliases {"prod-build" ^{:doc "Recompile code with prod profile."}
["do" "clean"
["with-profile" "prod" "cljsbuild" "once" "ios"]
["with-profile" "prod" "cljsbuild" "once" "android"]]
"generate-externs" ["with-profile" "prod" "externs" "android" "externs/externs.js"]
2017-07-17 11:18:52 +00:00
"test-cljs" ["with-profile" "test" "doo" "node" "test" "once"]
"test-protocol" ["with-profile" "test" "doo" "node" "protocol" "once"]}
:test-paths ["test/clj"]
:figwheel {:nrepl-port 7888}
2017-07-16 15:30:53 +00:00
:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.11"]
[re-frisk-remote "0.4.2"]
[re-frisk-sidecar "0.4.5"]
[com.cemerick/piggieback "0.2.1"]
[io.appium/java-client "3.4.1"]
[hawk "0.2.10"]]
:source-paths ["src" "env/dev"]
2017-07-16 15:30:53 +00:00
:cljsbuild {:builds
{:ios
2017-07-16 09:04:35 +00:00
{:source-paths ["react-native/src" "src" "env/dev"]
2017-07-16 15:30:53 +00:00
:figwheel true
:compiler {:output-to "target/ios/app.js"
:main "env.ios.main"
:output-dir "target/ios"
:optimizations :none}}
:android
2017-07-16 09:04:35 +00:00
{:source-paths ["react-native/src" "src" "env/dev"]
2017-07-16 15:30:53 +00:00
:figwheel true
:compiler {:output-to "target/android/app.js"
:main "env.android.main"
:output-dir "target/android"
:optimizations :none}}}}
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]
2016-11-30 07:42:51 +00:00
:timeout 240000}}
2017-07-16 09:04:35 +00:00
:test {:plugins [[lein-doo "0.1.7"]]
:cljsbuild {:builds
[{:id "test"
:source-paths ["src" "test/cljs"]
:compiler
{:main status-im.test.runner
2017-07-17 11:18:52 +00:00
:output-to "target/test/test.js"
:output-dir "target/test"
:optimizations :none
:target :nodejs}}
{:id "protocol"
:source-paths ["src" "test/cljs"]
:compiler
{:main status-im.test.protocol.runner
2017-07-16 09:04:35 +00:00
:output-to "target/test/test.js"
:output-dir "target/test"
:optimizations :none
:target :nodejs}}]}}
2017-07-16 15:30:53 +00:00
:prod {:cljsbuild {:builds
{:ios
2017-07-16 09:04:35 +00:00
{:source-paths ["react-native/src" "src" "env/prod"]
2017-07-16 15:30:53 +00:00
:compiler {:output-to "index.ios.js"
:main "env.ios.main"
:output-dir "target/ios-prod"
:static-fns true
:optimize-constants true
2017-07-17 11:18:52 +00:00
:optimizations :simple
2017-07-16 15:30:53 +00:00
:externs ["externs/externs.js"]
:closure-defines {"goog.DEBUG" false}
2017-07-16 09:04:35 +00:00
:parallel-build true}}
2017-07-16 15:30:53 +00:00
:android
2017-07-16 09:04:35 +00:00
{:source-paths ["react-native/src" "src" "env/prod"]
2017-07-16 15:30:53 +00:00
:compiler {:output-to "index.android.js"
:main "env.android.main"
:output-dir "target/android-prod"
:static-fns true
:optimize-constants true
2017-07-17 11:18:52 +00:00
:optimizations :simple
2017-07-16 15:30:53 +00:00
:externs ["externs/externs.js"]
:closure-defines {"goog.DEBUG" false}
2017-07-16 09:04:35 +00:00
:parallel-build true}}}}}})