forked from ml-in-barcelona/server-reason-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune-project
More file actions
71 lines (56 loc) · 1.36 KB
/
dune-project
File metadata and controls
71 lines (56 loc) · 1.36 KB
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
(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 <dsnxmoreno@gmail.com>")
(authors "David Sancho <dsnxmoreno@gmail.com>")
(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 (>= 4.14.1))
(reason (>= 3.17.2))
(melange (>= 3.0.0))
; Library dependencies
(uucp (>= 16.0.0))
(ppxlib (> 0.36.0))
(quickjs (>= 0.4.2))
(lwt (>= 5.9.2))
(lwt_ppx (>= 2.1.0))
(uri (>= 4.2.0))
(yojson (>= 2.2.0))
(integers (>= 0.7.0))
(zarith (>= 1.14))
(uutf (>= 1.0.3))
(melange-fetch (>= 0.2.0))
(melange-json (>= 2.0.0))
(melange-json-native (>= 2.0.0))
(melange-webapi (>= 0.21.0))
(reason-react (>= 0.16.0))
; Documentation
(odoc :with-doc)
; Dev dependencies
(ocamlformat
(and
(= 0.28.1)
:with-test)) ; We use ocamlformat on the tests
(ocaml-lsp-server :with-dev-setup)
(dream
(and
(= 1.0.0~alpha8)
:with-dev-setup)) ; We use dream on the demo
(reason-react-ppx :with-dev-setup)
; Test dependencies
(alcotest :with-test)
(alcotest-lwt :with-test)
(fmt :with-test)
(merlin :with-test)
))