-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 939 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
{
"name": "turborepo-remote-cache-api-cf-workers",
"version": "1.0.0",
"description": "Example Turborepo Remote Cache API with Cloudflare Workers and KV",
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "node build.js",
"dev": "miniflare --live-reload --debug",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"types:check": "tsc && tsc -p test/tsconfig.json"
},
"keywords": [
"turborepo",
"cloudflare",
"workers",
"kv",
"cache"
],
"author": "Matt Sutkowski",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230221.0",
"@types/jest": "^29.4.0",
"esbuild": "^0.17.10",
"jest": "^29.4.3",
"jest-environment-miniflare": "^2.12.1",
"miniflare": "^2.12.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"hono": "^3.0.1"
}
}