-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
dune-project
69 lines (54 loc) · 1.33 KB
/
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
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
(lang dune 3.9)
(using melange 0.1)
(using directory-targets 0.1)
(using mdx 0.4)
(cram enable)
(name server-reason-react)
(license MIT)
(maintainers "David Sancho <[email protected]>")
(authors "David Sancho <[email protected]>")
(source
(github ml-in-barcelona/server-reason-react))
(generate_opam_files true)
(implicit_transitive_deps false)
(package
(name server-reason-react)
(synopsis "Rendering React components on the server natively")
(depends
; General system dependencies
(ocaml (>= 5.0.0))
(reason (>= 3.11.0))
(melange (>= 3.0.0))
; Library dependencies
(uucp (>= 16.0.0))
(ppxlib (> 0.23.0))
(quickjs (>= 0.1.2))
(promise (>= 1.1.2))
(lwt (>= 5.6.0))
(lwt_ppx (>= 2.1.0))
(uri (>= 4.2.0))
(yojson (>= 2.2.0))
(integers (>= 0.7.0))
; Documentation
(odoc :with-doc)
; Dev dependencies
(ocamlformat
(and
(= 0.26.2)
:with-test)) ; We use ocamlformat on the tests
(ocaml-lsp-server :with-dev-setup)
; Demo deps
(dream :with-dev-setup)
(melange-webapi :with-dev-setup)
(reason-react :with-dev-setup)
(melange-webapi :with-dev-setup)
(reason-react-ppx :with-dev-setup)
; Test dependencies
(alcotest :with-test)
(alcotest-lwt :with-test)
(fmt :with-test)
(merlin :with-test)
; Benchmark dependencies
(core_unix :with-test)
(core_bench :with-test)
))