-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.18 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
75
76
77
78
{
"name": "real-world-app",
"version": "0.0.0",
"description": "My Project",
"esy": {
"build": "dune build -p <PACKAGE_NAME>",
"buildDev": "pesy",
"buildEnv": {
"LD_LIBRARY_PATH": "$LIBFFI_BUILD_DIR/lib:$LD_LIBRARY_PATH"
},
"release": { "releasedBinaries": [ "RealWorldAppApp.exe" ] }
},
"buildDirs": {
"test": {
"require": [ "real-world-app.lib" ],
"main": "TestRealWorldApp",
"name": "TestRealWorldApp.exe"
},
"library": {
"name": "real-world-app.lib",
"namespace": "Lib",
"includeSubdirs": "unqualified",
"require": [
"lwt", "caqti", "caqti-lwt", "caqti-driver-postgresql", "re-web",
"ppx_rapper.runtime", "decoders-yojson", "safepass", "jose",
"calendar", "base"
],
"preprocess": [
"pps", "ppx_deriving_yojson", "lwt_ppx", "ppx_deriving.make",
"ppx_deriving.show", "ppx_rapper", "ppx_yojson"
],
"flags": [ "-open Base" ]
},
"executable": {
"require": [ "real-world-app.lib", "re-web" ],
"main": "RealWorldAppApp",
"name": "RealWorldAppApp.exe"
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"test": "esy x TestRealWorldApp.exe",
"start": "esy x RealWorldAppApp.exe"
},
"dependencies": {
"@esy-ocaml/reason": "*",
"@opam/base": "v0.14.0",
"@opam/calendar": "2.04",
"@opam/caqti": "1.2.3",
"@opam/caqti-driver-postgresql": "1.2.4",
"@opam/caqti-lwt": "1.2.0",
"@opam/decoders-yojson": "0.4.0",
"@opam/dune": "2.6.0",
"@opam/jose": "0.5.1",
"@opam/lwt": "5.3.0",
"@opam/lwt_ppx": "2.0.1",
"@opam/ppx_deriving": "4.5",
"@opam/ppx_deriving_yojson": "3.5.3",
"@opam/ppx_rapper": "2.0.0",
"@opam/ppx_yojson": "1.0.0",
"@opam/ppx_yojson_conv": "v0.14.0",
"@opam/re": "1.9.0",
"@opam/safepass": "2.0",
"@yawaramin/re-web": "^0.6.0",
"ocaml": "4.10.1002"
},
"devDependencies": {
"@opam/merlin": "*",
"@opam/ocaml-lsp-server": "1.1.0",
"ocaml": "4.10.1002",
"pesy": "*",
"refmterr": "*"
},
"resolutions": {
"@opam/ctypes-foreign": "esy-ocaml/libffi#c61127d",
"@reason-native-web/piaf": "1.3.0"
}
}