-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
144 lines (121 loc) · 6.72 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
(defproject metafacture-playground "1.1.2"
:description "Web application to play around with workflows using Metafacture languages Fix and Flux"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.773"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]]
[org.clojure/tools.logging "1.2.4"]
[org.slf4j/slf4j-simple "2.0.7"]
[cljsjs/semantic-ui-react "0.88.1-0"]
[thheller/shadow-cljs "2.11.7"]
[reagent "0.10.0"]
[re-frame "1.1.2"]
[day8.re-frame/test "0.1.5"]
[yogthos/config "1.1.7"]
[ring "1.9.0"]
[compojure "1.6.2"]
[lambdaisland/uri "1.4.54"]
[day8.re-frame/fetch-fx "0.0.1"]
[re-pressed "0.3.1"]
[com.cognitect/transit-cljs "0.8.269"]
[org.clojure/data.json "2.4.0"]
[com.degel/re-frame-storage-fx "0.1.1"]
[jtk-dvlp/re-frame-readfile-fx "2.0.0"]
[org.metafacture/metafacture-commons "6.1.2"]
[org.metafacture/metafacture-framework "6.1.2"]
[org.metafacture/metafacture-flowcontrol "6.1.2"]
[org.metafacture/metafacture-mangling "6.1.2"]
[org.metafacture/metafacture-plumbing "6.1.2"]
[org.metafacture/metafacture-monitoring "6.1.2"]
[org.metafacture/metafacture-scripting "6.1.2"]
[org.metafacture/metafacture-javaintegration "6.1.2"]
[org.metafacture/metafacture-strings "6.1.2"]
[org.metafacture/metafacture-formeta "6.1.2"]
[org.metafacture/metafacture-formatting "6.1.2"]
[org.metafacture/metafacture-xml "6.1.2"]
[org.metafacture/metafacture-html "6.1.2"]
[org.metafacture/metafacture-triples "6.1.2"]
[org.metafacture/metafacture-statistics "6.1.2"]
[org.metafacture/metafacture-io "6.1.2"]
[org.metafacture/metafacture-biblio "6.1.2"]
[org.metafacture/metafacture-csv "6.1.2"]
[org.metafacture/metafacture-elasticsearch "6.1.2"]
[org.metafacture/metafacture-files "6.1.2"]
[org.metafacture/metafacture-jdom "6.1.2"]
[org.metafacture/metafacture-json "6.1.2"]
[org.metafacture/metafacture-linkeddata "6.1.2"]
[org.metafacture/metafacture-flux "6.1.2" :exclusions [org.eclipse.xtext/xtext-dev-bom org.eclipse.emf/org.eclipse.emf.common]]
[org.metafacture/metafacture-runner "6.1.2"]
[org.metafacture/metafacture-yaml "6.1.2"]
[org.metafacture/metamorph-api "6.1.2"]
[org.metafacture/metamorph "6.1.2"]
[org.metafacture/metamorph-test "6.1.2"]
[org.metafacture/metafix "1.1.2" :exclusions [org.eclipse.xtext/xtext-dev-bom]]
]
:managed-dependencies [[org.antlr/antlr-runtime "3.2"]]
:plugins [[lein-shadow "0.4.0"]
[lein-shell "0.5.0"]]
:min-lein-version "2.9.0"
:source-paths ["src/clj" "src/cljs"]
:test-paths ["test/cljs" "test/clj"]
:clean-targets ^{:protect false} ["resources/public/js/compiled" "target"
"test/js"]
:shadow-cljs {:nrepl {:port 8777}
:builds {:app {:target :browser
:output-dir "resources/public/js/compiled"
:asset-path "/js/compiled"
:modules {:app {:init-fn metafacture-playground.core/init
:preloads [devtools.preload]}}
:devtools {:http-root "resources/public"
:http-port 8280
:http-handler metafacture-playground.handler/dev-handler}}
:browser-test
{:target :browser-test
:ns-regexp "-test$"
:runner-ns shadow.test.browser
:test-dir "target/browser-test"
:devtools {:http-root "target/browser-test"
:http-port 8290}}
:karma-test
{:target :karma
:ns-regexp "-test$"
:output-to "target/karma-test.js"}}}
:shell {:commands {"karma" {:windows ["cmd" "/c" "karma"]
:default-command "karma"}
"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:aliases {"dev" ["do"
["shell" "echo" "\"DEPRECATED: Please use lein watch instead.\""]
["watch"]]
"watch" ["with-profile" "dev" "do"
["shadow" "watch" "app" "browser-test" "karma-test"]]
"prod" ["do"
["shell" "echo" "\"DEPRECATED: Please use lein release instead.\""]
["release"]]
"release" ["with-profile" "prod" "do"
["shadow" "release" "app"]]
"build-report" ["with-profile" "prod" "do"
["shadow" "run" "shadow.cljs.build-report" "app" "target/build-report.html"]
["shell" "open" "target/build-report.html"]]
"karma" ["do"
["shell" "echo" "\"DEPRECATED: Please use lein ci instead.\""]
["ci"]]
"ci" ["with-profile" "prod" "do"
["shadow" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]}
:main metafacture-playground.server
:profiles
{:dev
{:dependencies [[binaryage/devtools "1.0.2"]]
:source-paths ["dev"]}
:prod {}
:uberjar {:source-paths ["env/prod/clj"]
:omit-source true
:main metafacture-playground.server
:aot [metafacture-playground.server]
:uberjar-name "metafacture-playground.jar"
:prep-tasks ["compile" ["release"]]}}
:prep-tasks []
:jvm-opts ["-Dclojure.tools.logging.factory=clojure.tools.logging.impl/slf4j-factory"])