-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "express",
"version": "1.0.0",
"description": "basic rest api in express",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint": "eslint . --fix"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.2.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"@hono/standard-validator": "^0.2.2",
"@hono/zod-validator": "^0.7.6",
"dayjs": "^1.11.19",
"dotenv": "^17.3.1",
"hono": "^4.12.2",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"packageManager": "pnpm@10.30.2"
}