-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
42
43
44
45
46
47
{
"name": "kommentar",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "tsx --env-file=.env src/index.ts",
"lint": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky || true",
"test:_base": "vitest run .",
"test:unit": "pnpm run test:_base --config vitest.config.unit.mjs",
"test:integration": "pnpm run test:_base --config vitest.config.integration.mjs",
"test": "pnpm run test:unit && pnpm run test:integration && vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"@hono/node-server": "^1.13.2",
"@hono/zod-openapi": "^0.16.4",
"@scalar/hono-api-reference": "^0.5.158",
"hono": "^4.6.5",
"hono-rate-limiter": "^0.4.0",
"pg": "^8.13.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@types/node": "^20.11.17",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"tsx": "^4.7.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
}
}