-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.36 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.36 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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4",
"scripts": {
"fix": "node --run fix:prettier && node --run fix:eslint",
"fix:prettier": "prettier --write --cache .",
"fix:eslint": "eslint --max-warnings=0 --fix --cache --cache-location=.cache/eslint .",
"lint": "node --run lint:prettier && node --run lint:eslint",
"lint:prettier": "prettier --check --cache .",
"lint:eslint": "eslint --max-warnings=0 --cache --cache-location=.cache/eslint .",
"typecheck": "tsc --noEmit",
"workspace:init": "touch dev.local.env",
"dev:init": "touch dev.local.env",
"dev": "node --run dev:init && tsx watch --include='*.env' --clear-screen=false --env-file=dev.env --env-file-if-exists=dev.local.env src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@badrap/libapp": "^0.10.2",
"@badrap/valita": "^0.4.6",
"@hono/node-server": "^1.19.9",
"hono": "^4.12.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.8",
"eslint": "^10.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
}
}