summaryrefslogtreecommitdiff
path: root/package.json
blob: 409fb7709d5aee74e3b0df3d6513c8f32c6abc8c (plain)
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": "teawie-api",
	"version": "0.0.1",
	"type": "module",
	"private": true,
	"scripts": {
		"dev": "pnpm build && wrangler pages dev dist --live-reload",
		"build": "tsx build.ts",
		"lint": "tsc && eslint .",
		"fmt": "prettier --write ."
	},
	"dependencies": {
		"@hono/swagger-ui": "^0.5.0",
		"@hono/zod-openapi": "^0.18.3",
		"@hono/zod-validator": "^0.4.2",
		"hono": "^4.6.19",
		"zod": "^3.24.1"
	},
	"devDependencies": {
		"@cloudflare/workers-types": "^4.20250109.0",
		"@microsoft/eslint-formatter-sarif": "^3.1.0",
		"@octokit/types": "^13.7.0",
		"@types/node": "^22.10.7",
		"@typescript-eslint/eslint-plugin": "^7.0.0",
		"@typescript-eslint/parser": "^6.21.0",
		"esbuild": "^0.25.0",
		"eslint": "^8.57.1",
		"eslint-config-prettier": "^9.1.0",
		"prettier": "^3.4.2",
		"tsx": "^4.19.2",
		"typescript": "^5.7.3",
		"wrangler": "^3.105.0"
	},
	"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e",
	"eslintConfig": {
		"extends": [
			"eslint:recommended",
			"plugin:@typescript-eslint/recommended",
			"prettier"
		],
		"parser": "@typescript-eslint/parser",
		"plugins": [
			"@typescript-eslint"
		],
		"root": true,
		"ignorePatterns": [
			"dist/**"
		]
	}
}