-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 753 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 753 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
{
"name": "turbo-r2-archive",
"version": "0.0.0",
"private": true,
"description": "TurboRepo API Compliant Remote Caching w/ Cloudflare Workers using R2",
"keywords": [
"workers",
"cloudflare",
"typescript",
"turborepo",
"remote cache"
],
"scripts": {
"deploy": "wrangler deploy -j",
"start": "wrangler dev -j",
"build": "wrangler deploy -j --dry-run --outdir=./dist",
"type:check": "tsc --noEmit",
"clean": "rm -rf .turbo .wrangler dist node_modules"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230821.0",
"dotenv-cli": "^7.3.0",
"turbo": "^1.10.13",
"typescript": "^5.2.2",
"wrangler": "^3.6.0"
},
"dependencies": {
"@hono/zod-validator": "^0.1.8",
"hono": "^3.5.6",
"zod": "^3.22.2"
}
}