-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
49
{
"name": "oauth.do",
"version": "0.1.0",
"description": "A Cloudflare worker ",
"module": "index.js",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler publish",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/drivly/oauth.do.git"
},
"keywords": [
"api",
"api-gateway",
"cloudflare",
"workers",
"durable-objects",
"kv",
"r2",
"service-bindings"
],
"author": "Nathan Clevenger",
"license": "MIT",
"bugs": {
"url": "https://github.com/drivly/oauth.do/issues"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"homepage": "https://github.com/drivly/oauth.do#readme",
"dependencies": {
"itty-router": "^2.6.1",
"itty-router-extras": "^0.4.2",
"jose": "^4.8.3",
"nanoid": "^4.0.0",
"qs": "^6.11.0",
"worker-auth-providers": "^0.0.10"
},
"devDependencies": {
"prettier": "^2.7.1",
"wrangler": "^2.20.1"
}
}