-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 933 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 933 Bytes
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
{
"name": "cloudflare-worker-api",
"version": "1.0.0",
"description": "Sample RESTful APIs using Cloudflare Worker, Hono and Prisma",
"type": "module",
"scripts": {
"wrangler": "wrangler",
"prisma": "prisma",
"postinstall": "prisma generate --data-proxy",
"build": "node ./build.js",
"dev": "wrangler dev ./dist/index.mjs --live-reload",
"format": "prettier --write .",
"deploy": "wrangler deploy"
},
"author": "Bramand Suwandi <bram@malang.dev>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230914.0",
"esbuild": "^0.19.3",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prisma": "^4.0.0",
"typescript": "^5.2.2",
"wrangler": "^3.8.0"
},
"dependencies": {
"@prisma/client": "^4.0.0",
"@prisma/internals": "^5.3.1",
"@status/codes": "^1.6.2",
"hono": "^3.6.3",
"zod": "^3.22.2"
}
}