-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "nodejs-typescript-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for TypeScript API with Hono, Drizzle ORM, and Zod validation",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"studio": "drizzle-kit studio",
"push": "drizzle-kit push",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.5.4",
"@types/pg": "^8.11.9",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"drizzle-kit": "^0.24.2",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@hono/node-server": "^1.12.2",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"hono": "^4.6.1",
"pg": "^8.12.0",
"zod": "^3.23.8"
}
}