-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 816 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 816 Bytes
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
{
"name": "ghost-drive-be",
"version": "1.0.0",
"author": "Ghost Drive",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts",
"dev:prod": "export NODE_ENV=production && bun run --watch src/index.ts",
"start": "bun run src/index.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.2.0",
"@elysiajs/opentelemetry": "^1.2.0",
"@elysiajs/swagger": "^1.2.0",
"@mikro-orm/core": "^6.4.5",
"@mikro-orm/postgresql": "^6.4.5",
"elysia": "1.3.20",
"jsonwebtoken": "^9.0.2",
"minio": "^8.0.5",
"otplib": "^12.0.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.8",
"@types/qrcode": "^1.5.5",
"bun-types": "latest"
},
"module": "src/index.js"
}