-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 2.6 KB
/
package.json
File metadata and controls
executable file
·90 lines (90 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "morph_template",
"version": "0.1.0",
"description": "Starter Reason Morph Esy Pesy Project",
"esy": {
"build": "refmterr dune build -p #{self.name}",
"buildEnv": {
"ODOC_SYNTAX": "re"
}
},
"buildDirs": {
"test": {
"imports": [
"Library = require('morph_template/library')",
"Rely = require('rely/lib')"
],
"flags": [
"-linkall",
"-g",
"-w",
"-9"
]
},
"testExe": {
"imports": [
"Test = require('morph_template/test')"
],
"bin": {
"RunMorph_templateTests.exe": "RunMorph_templateTests.re"
}
},
"library": {
"imports": [
"Opium_core = require('opium_core')",
"Morph = require('morph')",
"Mtime = require('mtime')",
"Mtime_clock = require('mtime/clock/os')",
"Logs = require('logs')",
"Lwt = require('lwt')"
]
},
"bin": {
"imports": [
"Library = require('morph_template/library')",
"Morph = require('morph')",
"Morph_server_http = require('morph_server_http')",
"Logs = require('logs')",
"Logs_fmt = require('logs/fmt')",
"Fmt_tty = require('fmt/tty')",
"Lwt = require('lwt')",
"Uri = require('uri')"
],
"bin": {
"Morph_templateApp.exe": "Morph_templateApp.re"
}
}
},
"scripts": {
"start": "esy x Morph_templateApp.exe",
"test": "esy x RunMorph_templateTests.exe",
"format": "dune build @fmt --auto-promote --root .",
"doc": "esy dune build @doc",
"doc-path": "esy echo #{self.target_dir}/default/_doc/_html/index.html"
},
"dependencies": {
"@opam/dune": "*",
"@reason-native/rely": "*",
"@esy-ocaml/reason": "*",
"refmterr": "*",
"ocaml": "~4.7.0",
"@reason-native-web/morph": "*",
"@reason-native-web/morph_server": "*",
"@reason-native-web/morph_server_http": "*",
"@opam/mtime": "*",
"@opam/uri": "*"
},
"devDependencies": {
"@opam/merlin": "*",
"ocaml": "~4.7.0",
"@opam/odoc": "*",
"@pesy/esy-pesy": "0.1.0-alpha.3"
},
"resolutions": {
"@pesy/esy-pesy": "esy/pesy#2416a5e9f874f334120bec46776e0eece06d7a45",
"@opam/httpaf-lwt-unix": "anmonteiro/httpaf:httpaf-lwt-unix.opam#76b461bed081c64908fb1fdfa076ab2c936ca622",
"@opam/httpaf-lwt": "anmonteiro/httpaf:httpaf-lwt.opam#76b461bed081c64908fb1fdfa076ab2c936ca622",
"@opam/httpaf": "anmonteiro/httpaf:httpaf.opam#76b461bed081c64908fb1fdfa076ab2c936ca622",
"@opam/opium_core": "rgrinberg/opium:opium_core.opam#287b83f85bcf6c75d503b1edab77c7ec524f9090"
}
}