-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 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
{
"name": "hono-api-example",
"description": "HonoJS API Example",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"build": "tsc --build tsconfig.json",
"build:clean": "rimraf lib",
"format": "prettier --write ./src/**/*.ts",
"format:check": "prettier --check ./src/**/*.ts",
"lint": "eslint ./src",
"migration:create": "drizzle-kit generate",
"migration:apply": "drizzle-kit migrate",
"migration:apply:local": "wrangler d1 migrations apply hono-api-example --local",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage"
},
"dependencies": {
"@hono/zod-validator": "0.4.3",
"@neondatabase/serverless": "0.10.4",
"drizzle-orm": "0.39.3",
"hono": "4.7.1",
"inversify": "7.0.0-alpha.5",
"reflect-metadata": "0.2.2",
"zod": "3.24.2"
},
"devDependencies": {
"@eslint/compat": "1.2.6",
"@eslint/js": "9.20.0",
"@types/node": "22.13.4",
"@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"@vitest/coverage-v8": "3.0.5",
"@vitest/eslint-plugin": "1.1.31",
"dotenv": "16.4.7",
"drizzle-kit": "0.30.4",
"eslint": "9.20.1",
"eslint-import-resolver-typescript": "3.8.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"prettier": "3.5.1",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vitest": "3.0.5",
"wrangler": "3.109.1"
},
"version": "1.0.4"
}