-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.js
34 lines (33 loc) · 1.38 KB
/
deps.js
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
export { expandGlob } from "https://deno.land/[email protected]/fs/mod.ts";
export {
MemoryStore,
RedisStore,
Session,
} from "https://deno.land/x/[email protected]/mod.ts";
export * as path from "https://deno.land/[email protected]/path/mod.ts";
export { parseHTML } from "https://esm.sh/[email protected]";
export { default as FastestValidator } from "https://esm.sh/[email protected]";
export { marked } from "https://deno.land/x/[email protected]/mod.ts";
export { default as nunjucks } from "https://deno.land/x/[email protected]/mod.js";
export * as log from "https://deno.land/[email protected]/log/mod.ts";
export * as colors from "https://deno.land/[email protected]/fmt/colors.ts";
export {
Bson,
MongoClient,
ObjectId,
} from "https://deno.land/x/[email protected]/mod.ts";
export { connect } from "https://deno.land/x/[email protected]/mod.ts";
export { setup } from "https://esm.sh/[email protected]";
export * as twColors from "https://esm.sh/[email protected]/colors";
export { EventEmitter } from "https://deno.land/[email protected]/node/events.ts";
export {
getStyleTag,
shim,
virtualSheet,
} from "https://esm.sh/[email protected]/shim/server";
// Read .env and make available app-wide as `env` object.
import { config as dotEnv } from "https://deno.land/x/[email protected]/mod.ts";
dotEnv({ export: true, allowEmptyValues: true });
const env = Deno.env.toObject();
if (env.DEV !== "true") delete env.DEV;
export { env };