-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 KB
/
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
39
40
41
42
43
44
45
46
47
48
{
"name": "api-gateway",
"module": "worker.js",
"version": "0.1.0",
"description": "An API Gateway Built on Cloudflare Workers, Durable Objects, KV, R2, and Service Bindings",
"repository": {
"type": "git",
"url": "git+https://github.com/drivly/api-gateway.git"
},
"license": "MIT",
"scripts": {
"dev": "wrangler dev worker.js",
"deploy": "wrangler publish worker.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"keywords": [
"api",
"api-gateway",
"cloudflare",
"workers",
"durable-objects",
"kv",
"r2",
"service-bindings"
],
"author": "Nathan Clevenger",
"bugs": {
"url": "https://github.com/drivly/api-gateway/issues"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"homepage": "https://github.com/drivly/api-gateway#readme",
"dependencies": {
"hono": "^2.0.5",
"toucan-js": "^2.6.1",
"worker-auth-providers": "^0.0.10"
},
"devDependencies": {
"jest": "^28.1.3",
"prettier": "^2.7.1",
"wrangler": "^2.0.27"
}
}