This repository has been archived by the owner on Dec 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
37 lines (32 loc) · 1.83 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
(defproject district0x/district-ui-web3-account-balances "1.0.3"
:description "district UI module for handling web3 account balances"
:url "https://github.com/district0x/district-ui-web3-account-balances"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[day8.re-frame/forward-events-fx "0.0.5"]
[district0x/district-ui-web3-balances "1.0.2"]
[district0x/district-ui-web3-accounts "1.0.5"]
[district0x/re-frame-spec-interceptors "1.0.1"]
[mount "0.1.11"]
[org.clojure/clojurescript "1.9.946"]
[re-frame "0.10.2"]]
:doo {:paths {:karma "./node_modules/karma/bin/karma"}}
:npm {:devDependencies [[karma "1.7.1"]
[karma-chrome-launcher "2.2.0"]
[karma-cli "1.0.1"]
[karma-cljs-test "0.1.0"]]}
:profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.2"]
[day8.re-frame/test "0.1.5"]
[district0x/district-ui-smart-contracts "1.0.5"]
[district0x/district-ui-web3-tx "1.0.8"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.nrepl "0.2.13"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.8"]
[lein-npm "0.6.2"]]}}
:cljsbuild {:builds [{:id "tests"
:source-paths ["src" "test"]
:compiler {:output-to "tests-output/tests.js"
:output-dir "tests-output"
:main "tests.runner"
:optimizations :none}}]})