-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.13 KB
/
package.json
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
{
"name": "reason_server",
"version": "0.0.0",
"description": "Reason Server",
"esy": {
"build": "refmterr dune build -j 4",
"release": { "releasedBinaries": [ "ReasonServerApp.exe" ] }
},
"buildDirs": {
"test": {
"require": [ "reason-server.lib" ],
"main": "ReasonServer",
"name": "TestReasonServer.exe"
},
"library": { "name": "reason-server.lib", "namespace": "ReasonServer" },
"executable": {
"require": [ "reason-server.lib" ],
"main": "ReasonServerApp",
"name": "ReasonServerApp.exe"
}
},
"scripts": {
"test": "esy x TestReasonServer.exe",
"utop": "dune utop library -- -implicit-bindings",
"run": "esy x ReasonServerApp.exe",
"watch": "watchexec esy",
"format": "bash -c 'refmt --in-place library/*.re executable/*.re'"
},
"dependencies": {
"@esy-ocaml/reason": "^3.3.7",
"@opam/async_ssl": "v0.11.0",
"@opam/cohttp": "1.1.1",
"@opam/cohttp-async": "1.1.1",
"@opam/dune": "1.4.0",
"@opam/yojson": "1.4.1",
"refmterr": "^3.1.9"
},
"devDependencies": {
"ocaml": "4.6.6" ,
"@esy-ocaml/rtop": "^3.3.0"
}
}