-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 854 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
31
32
33
34
35
36
37
{
"name": "elysia-api-template",
"private": true,
"type": "module",
"module": "index.ts",
"scripts": {
"lint": "oxlint",
"format": "oxfmt",
"lint:fix": "oxlint --fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/cors": "^1.4.1",
"@elysiajs/openapi": "^1.4.13",
"better-auth": "^1.4.12",
"drizzle-orm": "^0.45.1",
"elysia": "^1.4.21"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"oxlint-tsgolint": "^0.11.0"
},
"peerDependencies": {
"typescript": "^5"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json}": "bun run lint:fix"
}
}