-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 906 Bytes
/
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
{
"private": true,
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "node build.js",
"dev": "miniflare --live-reload --debug --modules ./dist/index.mjs",
"dev:remote": "wrangler dev",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --cache .",
"typecheck": "tsc --noEmit",
"deploy": "wrangler publish"
},
"dependencies": {
"hono": "3.2.5"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20230518.0",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vitest/coverage-v8": "^0.32.0",
"esbuild": "0.17.19",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"miniflare": "3.0.1",
"prettier": "2.8.8",
"typescript": "5.1.3",
"vitest": "0.32.0",
"vitest-environment-miniflare": "2.14.0",
"wrangler": "3.1.0"
}
}