-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1010 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
34
35
36
37
38
{
"name": "cloudflare-workers-boilerplate",
"version": "1.0.0",
"description": "",
"main": "dist/indes.mjs",
"type": "module",
"scripts": {
"build": "node ./build.js",
"dev": "miniflare --live-reload --debug --env .env --modules dist/index.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"esbuild": "^0.15.11",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"miniflare": "^2.12.1",
"node": "^19.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"wrangler": "^2.1.13"
},
"dependencies": {
"hono": "^3.0.3",
"zod": "^3.19.1",
"zod-error": "^1.0.5"
}
}