-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 807 Bytes
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
{
"name": "personal-api",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "bunx eslint",
"lint:fix": "bunx eslint --fix"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"hono": "^4.12.14",
"hono-throttle": "^1.0.0",
"redis": "^5.12.1"
},
"devDependencies": {
"@moritz-grimm/eslint-config": "^2.2.0",
"@octokit/types": "^16.0.0",
"@types/node": "^20.19.39",
"@vitest/coverage-v8": "4.1.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}