Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(idp): migrate to Hono #431

Merged
merged 10 commits into from
Dec 14, 2024
Merged
8 changes: 1 addition & 7 deletions idp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@

## Getting Started

Run for development:

```shell
deno task dev
```

Run for production:
Run:

```shell
deno task start
Expand Down
22 changes: 4 additions & 18 deletions idp/deno.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,28 @@
{
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env --allow-sys --allow-net src/app.ts",
"dev": "deno run --allow-read --allow-write --allow-env --allow-sys --allow-net --reload src/app.ts",
"compile": "deno compile --allow-read --allow-write --allow-env --allow-sys --allow-net --output voltaserve-idp src/app.ts",
"check": "deno check src/app.ts"
},
"imports": {
"@/": "./src/",
"hono": "npm:[email protected]",
"zod": "npm:[email protected]",
"@hono/zod-validator": "npm:@hono/[email protected]",
"camelize": "npm:[email protected]",
"cors": "npm:[email protected]",
"dotenv": "npm:[email protected]",
"express": "npm:[email protected]",
"express-validator": "npm:[email protected]",
"handlebars": "npm:[email protected]",
"hashids": "npm:[email protected]",
"jose": "npm:[email protected]",
"js-yaml": "npm:[email protected]",
"meilisearch": "npm:[email protected]",
"mime-types": "npm:[email protected]",
"morgan": "npm:[email protected]",
"multer": "npm:[email protected]",
"nodemailer": "npm:[email protected]",
"passport": "npm:[email protected]",
"passport-jwt": "npm:[email protected]",
"uuid": "npm:[email protected]",
"@types/body-parser": "npm:@types/[email protected]",
"@types/cors": "npm:@types/[email protected]",
"@types/express": "npm:@types/[email protected]",
"@types/js-yaml": "npm:@types/[email protected]",
"@types/mime-types": "npm:@types/[email protected]",
"@types/morgan": "npm:@types/[email protected]",
"@types/multer": "npm:@types/[email protected]",
"@types/node": "npm:@types/[email protected]",
"@types/nodemailer": "npm:@types/[email protected]",
"@types/passport": "npm:@types/[email protected]",
"@types/passport-jwt": "npm:@types/[email protected]",
"@types/uuid": "npm:@types/[email protected]",
"globals": "npm:[email protected]"
"@types/uuid": "npm:@types/[email protected]"
},
"lint": {
"rules": {
Expand Down
Loading
Loading