-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
27 lines (27 loc) · 855 Bytes
/
deps.ts
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
//oak
export {
Application,
Router,
Middleware,
RouterContext,
Context,
} from "https://deno.land/x/oak/mod.ts";
//db
export { Schema } from "https://deno.land/x/nessie/mod.ts";
export { Client } from "https://deno.land/x/postgres/mod.ts";
import value_schema from "https://deno.land/x/value_schema/mod.ts";
export const vs = value_schema;
// @deno-types="https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/master/types/yup/index.d.ts"
import * as yup from "https://cdn.pika.dev/yup";
export { yup };
//auth
import * as bcrypt from "https://deno.land/x/bcrypt/mod.ts";
export { bcrypt };
export {
makeJwt,
setExpiration,
Jose,
Payload,
} from "https://deno.land/x/djwt/create.ts";
export { validateJwt } from "https://deno.land/x/djwt/validate.ts";
export { nanoid, generated } from "https://deno.land/x/nanoid/async.ts";