-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.js
More file actions
34 lines (33 loc) · 1.38 KB
/
Copy pathdeps.js
File metadata and controls
34 lines (33 loc) · 1.38 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
export { expandGlob } from "https://deno.land/std@0.178.0/fs/mod.ts";
export {
MemoryStore,
RedisStore,
Session,
} from "https://deno.land/x/oak_sessions@v4.1.0/mod.ts";
export * as path from "https://deno.land/std@0.178.0/path/mod.ts";
export { parseHTML } from "https://esm.sh/linkedom@0.14.21";
export { default as FastestValidator } from "https://esm.sh/fastest-validator@1.16.0";
export { marked } from "https://deno.land/x/marked@1.0.1/mod.ts";
export { default as nunjucks } from "https://deno.land/x/nunjucks@3.2.3-2/mod.js";
export * as log from "https://deno.land/std@0.178.0/log/mod.ts";
export * as colors from "https://deno.land/std@0.178.0/fmt/colors.ts";
export {
Bson,
MongoClient,
ObjectId,
} from "https://deno.land/x/mongo@v0.31.1/mod.ts";
export { connect } from "https://deno.land/x/redis@v0.29.2/mod.ts";
export { setup } from "https://esm.sh/twind@0.16.19";
export * as twColors from "https://esm.sh/twind@0.16.19/colors";
export { EventEmitter } from "https://deno.land/std@0.177.0/node/events.ts";
export {
getStyleTag,
shim,
virtualSheet,
} from "https://esm.sh/twind@0.16.19/shim/server";
// Read .env and make available app-wide as `env` object.
import { config as dotEnv } from "https://deno.land/x/dotenv@v3.2.0/mod.ts";
dotEnv({ export: true, allowEmptyValues: true });
const env = Deno.env.toObject();
if (env.DEV !== "true") delete env.DEV;
export { env };