summaryrefslogtreecommitdiff
path: root/package.json
blob: d3430c007dfa4cbccf5a511216da05c803b24d33 (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.4.1",
		"@hono/zod-openapi": "^0.16.0",
		"@hono/zod-validator": "^0.2.2",
		"hono": "^4.5.11",
		"zod": "^3.23.8"
	},
	"devDependencies": {
		"@cloudflare/workers-types": "^4.20240903.0",
		"@microsoft/eslint-formatter-sarif": "^3.1.0",
		"@octokit/types": "^13.5.0",
		"@types/node": "^22.5.5",
		"@typescript-eslint/eslint-plugin": "^7.0.0",
		"@typescript-eslint/parser": "^6.21.0",
		"esbuild": "^0.23.1",
		"eslint": "^8.57.0",
		"eslint-config-prettier": "^9.1.0",
		"prettier": "^3.3.3",
		"tsx": "^4.19.0",
		"typescript": "^5.5.4",
		"wrangler": "^3.76.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/**"
		]
	}
}