-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "xyzuan-elysiajs-boilerplate",
"version": "1.0.0",
"description": "A boilerplate project using Elysia framework, integrated with Swagger, Zod, and Prisma for a streamlined backend setup.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts"
},
"author": {
"name": "xyzuan",
"email": "[email protected]",
"url": "https://xyzuan.my.id",
"github": "https://github.com/xyzuan",
"linkedin": "https://linkedin.com/in/xyzuan",
"organization": "xyzscape"
},
"repository": {
"type": "git",
"url": "https://github.com/xyzuan/elysiajs-boilerplate.git"
},
"license": "MIT",
"keywords": [
"boilerplate",
"ElysiaJS",
"zod",
"swagger",
"typescript",
"prisma",
"bun"
],
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/swagger": "^1.1.5",
"elysia": "latest",
"zod": "^3.23.8"
},
"devDependencies": {
"bun-types": "latest",
"prisma": "^5.22.0"
},
"engines": {
"bun": ">=0.8.0"
},
"homepage": "https://github.com/xyzuan/elysiajs-boilerplate#readme",
"bugs": {
"url": "https://github.com/xyzuan/elysiajs-boilerplate/issues"
},
"module": "src/index.js"
}