-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hono-api-starter",
"version": "1.0.0",
"description": "A starter repository to build Web Applications with Hono",
"type": "module",
"scripts": {
"commit": "cz",
"dev": "tsx watch ./src/node.ts",
"console": "tsx ./src/console.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "yarpm run lint --fix",
"prisma:reset": "yarpm run prisma:migrate:dev reset",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate": "prisma migrate deploy",
"prisma:push": "prisma db push",
"prisma:generate": "prisma generate",
"prisma:studio": "prisma studio",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"update-all-dependencies": "pnpm dlx npm-check-updates -u",
"prepare": "is-ci || husky",
"generate": "yarpm run prisma:generate",
"postinstall": "yarpm run generate"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@sentry/aws-serverless": "^8.40.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"devmoji": "^2.3.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"prisma-kysely": "^1.8.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5",
"yarpm": "^1.2.0"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@prisma/client": "^5.22.0",
"@prisma/instrumentation": "^5.22.0",
"@t3-oss/env-core": "^0.11.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"hono": "^4.6.11",
"kysely": "^0.27.4",
"lodash": "^4.17.21",
"prisma-extension-kysely": "^3.0.0",
"zod": "^3.23.8"
}
}