-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kekik-api",
"version": "0.0.1",
"description": "Modern dummy API with Drizzle ORM, Hono, and Bun",
"homepage": "https://github.com/awaiden/kekik-api#readme",
"bugs": {
"url": "https://github.com/awaiden/kekik-api/issues"
},
"author": {
"name": "awaiden",
"url": "https://github.com/awaiden"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awaiden/kekik-api.git"
},
"type": "module",
"module": "dist/index.mjs",
"scripts": {
"build": "tsdown",
"db": "drizzle-kit",
"db:push": "drizzle-kit push",
"db:seed": "bun ./scripts/seed.ts",
"dev": "bun run --watch src/index.ts",
"format": "oxfmt --write .",
"lint": "oxlint --type-aware .",
"prepare": "husky",
"prestart": "bun run db:push && bun run db:seed",
"start": "bun ."
},
"dependencies": {
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.7",
"pg": "^8.17.2"
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@types/bun": "latest",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.11.2",
"tsdown": "^0.20.1",
"tsx": "^4.21.0"
},
"peerDependencies": {
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxfmt --write",
"oxlint --fix --type-aware"
]
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.6"
}