2016-08-20 21:36:09 +00:00
|
|
|
(defproject commiteth "0.1.0-SNAPSHOT"
|
|
|
|
|
2017-01-20 22:11:17 +00:00
|
|
|
:description "Ethereum bounty bot for Github"
|
|
|
|
:url "https://commiteth.com"
|
2016-08-20 21:36:09 +00:00
|
|
|
|
2017-01-20 22:11:17 +00:00
|
|
|
:dependencies [[metosin/compojure-api "1.1.10"]
|
|
|
|
[re-frame "0.9.1"]
|
2016-08-20 21:36:09 +00:00
|
|
|
[cljs-ajax "0.5.8"]
|
|
|
|
[secretary "1.2.3"]
|
|
|
|
[reagent-utils "0.2.0"]
|
2016-09-19 20:26:57 +00:00
|
|
|
[reagent "0.6.0"]
|
2017-02-23 10:26:29 +00:00
|
|
|
[org.clojure/clojurescript "1.9.473"]
|
2016-08-20 21:36:09 +00:00
|
|
|
[org.clojure/clojure "1.8.0"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[selmer "1.10.5"]
|
2017-01-30 18:33:25 +00:00
|
|
|
[markdown-clj "0.9.93"]
|
|
|
|
[ring-middleware-format "0.7.2"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[metosin/ring-http-response "0.8.1"]
|
2016-08-20 21:36:09 +00:00
|
|
|
[bouncer "1.0.0"]
|
|
|
|
[org.clojure/tools.logging "0.3.1"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[compojure "1.5.2"]
|
|
|
|
[http-kit "2.2.0"]
|
2016-08-26 01:10:05 +00:00
|
|
|
[ring/ring-json "0.4.0"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[ring/ring-defaults "0.2.2"]
|
|
|
|
[ring/ring-codec "1.0.1"]
|
|
|
|
[mount "0.1.11"]
|
|
|
|
[cprop "0.1.10"]
|
2016-08-20 21:36:09 +00:00
|
|
|
[org.clojure/tools.cli "0.3.5"]
|
|
|
|
[luminus-nrepl "0.1.4"]
|
2017-01-30 18:33:25 +00:00
|
|
|
[buddy "1.3.0"]
|
|
|
|
[buddy/buddy-auth "1.4.1"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[luminus-migrations "0.2.9"]
|
|
|
|
[conman "0.6.3"]
|
|
|
|
[org.postgresql/postgresql "9.4.1212"]
|
|
|
|
[luminus-immutant "0.2.3"]
|
2016-09-07 00:20:17 +00:00
|
|
|
[clj.qrgen "0.4.0"]
|
2017-01-20 22:11:17 +00:00
|
|
|
[digest "1.4.5"]
|
2017-01-28 06:24:05 +00:00
|
|
|
[tentacles "0.5.1"]
|
2017-01-28 07:29:22 +00:00
|
|
|
[re-frisk "0.3.2"]
|
2017-02-11 12:36:06 +00:00
|
|
|
[bk/ring-gzip "0.2.1"]
|
2017-02-18 09:07:51 +00:00
|
|
|
[crypto-random "1.2.0"]
|
|
|
|
[crypto-equality "1.0.0"]
|
2017-02-21 08:49:25 +00:00
|
|
|
[cheshire "5.7.0"]
|
2017-02-21 19:41:39 +00:00
|
|
|
[mpg "1.3.0"]
|
2017-02-24 22:15:44 +00:00
|
|
|
[pandect "0.6.1"]
|
2017-02-27 20:38:41 +00:00
|
|
|
[prismatic/plumbing "0.5.3"]
|
2017-03-01 20:09:48 +00:00
|
|
|
[cljsjs/moment "2.17.1-0"]
|
|
|
|
[org.clojure/tools.nrepl "0.2.12"]]
|
2016-08-20 21:36:09 +00:00
|
|
|
|
|
|
|
:min-lein-version "2.0.0"
|
|
|
|
:source-paths ["src/clj" "src/cljc"]
|
|
|
|
:resource-paths ["resources" "target/cljsbuild"]
|
|
|
|
:target-path "target/%s/"
|
|
|
|
:main commiteth.core
|
2017-01-20 22:11:17 +00:00
|
|
|
:migratus {:store :database
|
2017-01-21 16:06:37 +00:00
|
|
|
:migration-dir "migrations"
|
2017-01-20 22:11:17 +00:00
|
|
|
:db ~(get (System/getenv) "DATABASE_URL")}
|
2016-08-20 21:36:09 +00:00
|
|
|
|
|
|
|
:plugins [[lein-cprop "1.0.1"]
|
|
|
|
[migratus-lein "0.4.1"]
|
|
|
|
[lein-cljsbuild "1.1.3"]
|
2017-02-11 12:36:06 +00:00
|
|
|
[lein-auto "0.1.2"]
|
2017-03-01 20:09:48 +00:00
|
|
|
[lein-less "1.7.5"]
|
|
|
|
[cider/cider-nrepl "0.15.0-SNAPSHOT"]]
|
2016-09-19 20:26:57 +00:00
|
|
|
|
2017-01-20 22:11:17 +00:00
|
|
|
|
2017-02-11 12:36:06 +00:00
|
|
|
:less {:source-paths ["src/less"]
|
|
|
|
:target-path "resources/public/css"}
|
2016-09-11 22:48:25 +00:00
|
|
|
|
2017-02-11 12:36:06 +00:00
|
|
|
:ring {:destroy commiteth.scheduler/stop-scheduler}
|
2016-08-20 21:36:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
:clean-targets ^{:protect false}
|
2017-01-20 22:11:17 +00:00
|
|
|
[:target-path [:cljsbuild :builds :app :compiler :output-dir] [:cljsbuild :builds :app :compiler :output-to]]
|
2016-08-20 21:36:09 +00:00
|
|
|
:figwheel
|
|
|
|
{:http-server-root "public"
|
|
|
|
:nrepl-port 7002
|
|
|
|
:css-dirs ["resources/public/css"]
|
|
|
|
:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
|
|
|
|
|
|
|
|
|
|
|
|
:profiles
|
2017-03-01 20:09:48 +00:00
|
|
|
{:uberjar {:omit-source true
|
2016-08-20 21:36:09 +00:00
|
|
|
:prep-tasks ["compile" ["cljsbuild" "once" "min"]]
|
|
|
|
:cljsbuild
|
2017-01-20 22:11:17 +00:00
|
|
|
{:builds
|
|
|
|
{:min
|
|
|
|
{:source-paths ["src/cljc" "src/cljs" "env/prod/cljs"]
|
|
|
|
:compiler
|
|
|
|
{:output-to "target/cljsbuild/public/js/app.js"
|
2017-02-23 10:26:29 +00:00
|
|
|
:externs ["externs/web3-externs.js"]
|
2017-01-20 22:11:17 +00:00
|
|
|
:optimizations :advanced
|
|
|
|
:pretty-print false
|
2017-02-22 19:15:39 +00:00
|
|
|
:closure-defines {goog.DEBUG false}
|
2017-01-20 22:11:17 +00:00
|
|
|
:closure-warnings
|
2017-02-23 10:26:29 +00:00
|
|
|
{:externs-validation :off
|
|
|
|
:non-standard-jsdoc :off}}}}}
|
2016-08-20 21:36:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
:aot :all
|
|
|
|
:uberjar-name "commiteth.jar"
|
|
|
|
:source-paths ["env/prod/clj"]
|
|
|
|
:resource-paths ["env/prod/resources"]}
|
|
|
|
|
2017-02-11 12:36:06 +00:00
|
|
|
|
|
|
|
:dev {:dependencies [[prone "1.1.4"]
|
|
|
|
[ring/ring-mock "0.3.0"]
|
|
|
|
[ring/ring-devel "1.5.1"]
|
|
|
|
[pjstadig/humane-test-output "0.8.1"]
|
|
|
|
[doo "0.1.7"]
|
|
|
|
[binaryage/devtools "0.9.0"]
|
|
|
|
[figwheel-sidecar "0.5.9"]
|
|
|
|
[org.clojure/tools.nrepl "0.2.12"]
|
2017-02-19 08:47:16 +00:00
|
|
|
[com.cemerick/piggieback "0.2.2-SNAPSHOT"]
|
|
|
|
[sablono "0.7.7"]]
|
2017-02-11 12:36:06 +00:00
|
|
|
:plugins [[com.jakemccrary/lein-test-refresh "0.14.0"]
|
|
|
|
[lein-doo "0.1.7"]
|
|
|
|
[lein-figwheel "0.5.9"]]
|
|
|
|
:cljsbuild
|
|
|
|
{:builds
|
|
|
|
[{:id "app"
|
|
|
|
:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"]
|
|
|
|
:compiler
|
|
|
|
{:main "commiteth.app"
|
|
|
|
:asset-path "/js/out"
|
|
|
|
:output-to "target/cljsbuild/public/js/app.js"
|
|
|
|
:output-dir "target/cljsbuild/public/js/out"
|
|
|
|
:source-map true
|
|
|
|
:optimizations :none
|
|
|
|
:pretty-print true}}]}
|
|
|
|
|
|
|
|
:doo {:build "test"}
|
|
|
|
:source-paths ["env/dev/clj" "test/clj"]
|
|
|
|
:resource-paths ["env/dev/resources"]
|
|
|
|
:repl-options {:init-ns user}
|
|
|
|
:injections [(require 'pjstadig.humane-test-output)
|
|
|
|
(pjstadig.humane-test-output/activate!)]}
|
|
|
|
:test {:resource-paths ["env/dev/resources" "env/test/resources"]
|
|
|
|
:dependencies [[devcards "0.2.2"]]
|
|
|
|
:cljsbuild
|
|
|
|
{:builds
|
|
|
|
{:test
|
|
|
|
{:source-paths ["src/cljc" "src/cljs" "test/cljs"]
|
|
|
|
:compiler
|
|
|
|
{:output-to "target/test.js"
|
|
|
|
:main "commiteth.doo-runner"
|
|
|
|
:optimizations :whitespace
|
|
|
|
:pretty-print true}}
|
|
|
|
:devcards {:source-paths ["src/cljs" "src/cljc"]
|
|
|
|
:figwheel {:devcards true}
|
|
|
|
:compiler {:main commiteth.cards
|
|
|
|
:asset-path "js/compiled/out"
|
|
|
|
:output-to "resources/public/js/compiled/devcards.js"
|
|
|
|
:output-dir "resources/public/js/compiled/out"
|
|
|
|
:source-map-timestamp true}}}}}})
|