forked from jchavarri/jsoo-react-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
36 lines (27 loc) · 752 Bytes
/
dune-project
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
(lang dune 2.7)
(name jsoo-react-realworld-example)
(source
(github ml-in-barcelona/jsoo-react-template))
(license MIT)
(authors "davesnx" "jchavarri")
(maintainers "davesnx" "jchavarri")
(generate_opam_files true)
(package
(name jsoo-react-realworld-example)
(synopsis "Project template for jsoo-react")
(description
"Template for a minimal jsoo-react project")
(depends
;; General system dependencies
(dune (>= 2))
(ocaml (>= 4.10.0))
;; Web toolkit
(js_of_ocaml (and (>= 3.8.0) (< 3.11.0)))
(js_of_ocaml-ppx (and (>= 3.8.0) (< 3.11.0)))
(promise_jsoo (and (>= 0.3.1) (< 0.4.0)))
(gen_js_api (and (>= 1.0.8) (< 2.0.0)))
(ppx_jsobject_conv :dev)
(jsoo-react :dev)
;; Dev dependencies
(ocaml-lsp-server :dev)
))