-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.ts
19 lines (16 loc) · 1.3 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export { z } from 'https://deno.land/x/[email protected]/mod.ts';
// See https://deno.land/[email protected]/advanced/typescript/types#providing-types-when-importing
// @deno-types="npm:@types/express@^4.17"
export { default as express } from 'npm:[email protected]';
export * as jwt from 'https://deno.land/x/[email protected]/mod.ts';
// hyper core
export { default as hyper } from 'https://raw.githubusercontent.com/hyper63/hyper/hyper%40v4.3.2/packages/core/mod.ts';
// hyper driving adapter
export { default as app } from 'https://raw.githubusercontent.com/hyper63/hyper/hyper-app-express%40v1.2.1/packages/app-express/mod.ts';
// hyper driven adapters
export { default as mongodb } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-mongodb/v3.3.0/mod.ts';
export { default as redis } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-redis/v3.2.2/mod.js';
export { default as elasticsearch } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-elasticsearch/v2.0.3/mod.js';
export { default as minio } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-minio/v1.0.2/mod.js';
export { default as bullmq } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-bullmq/v1.0.1/mod.ts';
export { default as hooks } from 'https://raw.githubusercontent.com/hyper63/hyper-adapter-hooks/v1.0.6/mod.js';