-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.27 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
{
"type": "module",
"scripts": {
"build": "bun build src/index.ts --outdir build --target bun",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "bun run src/db/seed.ts",
"db:studio": "drizzle-kit studio",
"dev": "bun run --hot src/index.ts",
"lint": "bun prettier -c -w -u . && bun eslint --fix .",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier -c -w -u",
"*.{js,jsx,ts,tsx}": "eslint --fix",
"package.json": "sort-package-json"
},
"dependencies": {
"@hono/zod-validator": "^0.2.1",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"hono": "^4.3.7",
"mysql2": "^3.9.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"commitlint": "^19.3.0",
"commitlint-config-gitmoji": "^2.3.1",
"drizzle-kit": "^0.22.5",
"eslint": "^8.57.0",
"eslint-plugin-drizzle": "^0.2.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sort-package-json": "^2.10.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
}
}