-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.53 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
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
72
73
74
{
"name": "mh2",
"version": "0.0.0",
"description": "My Project",
"esy": {
"build": "pesy",
"NOTE": "Optional release Section. Customizes result of `esy release`",
"release": {
"releasedBinaries": [
"Server.exe"
]
},
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"buildDirs": {
"lib": {
"require": [
"tablecloth-native",
"lwt",
"pgocaml",
"jwto",
"graphql-cohttp",
"graphql-lwt",
"cohttp",
"cohttp-lwt-unix",
"safepass",
"unix"
],
"preprocess": [
"pps",
"ppx_pgsql",
"ppxlib.runner",
"lwt_ppx"
],
"name": "mh2.lib",
"namespace": "Mh2"
},
"bin": {
"require": [
"mh2.lib"
],
"main": "Server",
"name": "Server.exe"
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"test": "esy x TestMh2.exe",
"start": "esy x Server.exe"
},
"dependencies": {
"@esy-ocaml/reason": "*",
"@opam/pgocaml": "2.3",
"@opam/ppx_pgsql": "tizoc/ppx_pgsql:ppx_pgsql.opam",
"@opam/cohttp": "2.1.2",
"@opam/cohttp-lwt-unix": "2.0.0",
"@opam/graphql-cohttp": "0.12.1",
"@opam/graphql-lwt": "0.9.0",
"@opam/lwt": "4.1.0",
"@opam/lwt_ppx": "*",
"@opam/safepass": "3.0",
"@opam/yojson": "*",
"@opam/jwto": "*",
"@opam/tablecloth-native": "0.0.3",
"ocaml": "~4.7.0",
"refmterr": "*",
"pesy": "*"
},
"devDependencies": {
"@opam/merlin": "*"
}
}