forked from athensresearch/athens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
79 lines (65 loc) · 3.39 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(defproject athens "0.1.0-SNAPSHOT"
:description "Open-Source Roam"
:url "https://github.com/athensresearch/athens"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.764"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]]
[thheller/shadow-cljs "2.10.22"]
[reagent "0.10.0"]
[re-frame "1.1.0"]
[datascript "1.0.0"]
[datascript-transit "0.3.0"]
[denistakeda/posh "0.5.8"]
[cljs-http "0.1.46"]
[day8.re-frame/async-flow-fx "0.1.0"]
[metosin/reitit "0.4.2"]
[metosin/komponentit "0.3.10"]
[instaparse "1.4.10"]
[devcards "0.2.6"]
[borkdude/sci "0.0.13-alpha.22"]
[garden "1.3.10"]
[stylefy "2.2.0"]
[tick "0.4.26-alpha"]]
:plugins [[lein-shell "0.5.0"]]
:min-lein-version "2.5.3"
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"]
:shell {:commands {"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:aliases {"dev" ["with-profile" "dev" "do"
["run" "-m" "shadow.cljs.devtools.cli" "watch" "main" "renderer"]]
"build" ["with-profile" "dev" "do"
["run" "-m" "shadow.cljs.devtools.cli" "compile" "main" "renderer"]]
"devcards" ["with-profile" "dev" "do"
["run" "-m" "shadow.cljs.devtools.cli" "watch" "devcards"]]
"compile" ["with-profile" "dev" "do"
["run" "-m" "shadow.cljs.devtools.cli" "compile" "app"]
["run" "-m" "shadow.cljs.devtools.cli" "compile" "devcards"]]
"prod" ["with-profile" "prod" "do"
["run" "-m" "shadow.cljs.devtools.cli" "release" "app"]]
"build-report" ["with-profile" "prod" "do"
["run" "-m" "shadow.cljs.devtools.cli" "run" "shadow.cljs.build-report" "app" "target/build-report.html"]
["shell" "open" "target/build-report.html"]]
"test-jvm" ["test"]
"test-karma" ["shell" "karma" "start" "--single-run"]
"gh-pages" ["shell" "yarn" "gh-pages" "-d" "resources/public"]
"karma" ["do"
["run" "-m" "shadow.cljs.devtools.cli" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]}
:profiles
{:dev
{:dependencies [[binaryage/devtools "1.0.0"]
[day8.re-frame/re-frame-10x "0.6.0"]
[day8.re-frame/tracing "0.5.3"]
[cider/cider-nrepl "0.25.1"]]
:source-paths ["dev"]}
:prod
{:dependencies [[day8.re-frame/tracing-stubs "0.5.3"]]}}
:prep-tasks [])