-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker.json
39 lines (39 loc) · 1.01 KB
/
docker.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
{
"name": "reason_server",
"version": "0.0.0",
"description": "Reason Server",
"esy": {
"build": "dune build -j 4 --profile docker",
"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"
},
"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/yojson": "1.4.1"
},
"devDependencies": {
"ocaml": "4.6.6",
"@opam/dune": "1.4.0"
}
}