-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 820 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
{
"name": "route53-graphql-api",
"private": true,
"description": "🔥GraphQL Warpper for Route 53's Rest API, deployed on the edge using Cloudflare Workers",
"version": "1.0.0",
"author": "Dipak Parmar <hi@dipak.tech>",
"keywords": [
"graphql",
"route53",
"cloudflare",
"workers"
],
"dependencies": {
"@aws-sdk/client-route-53": "^3.458.0",
"apollo-datasource-rest": "^3.2.0",
"apollo-server-cloudflare": "^3.13.0",
"graphql": "^16.8.1"
},
"devDependencies": {
"prettier": "^3.1.0"
},
"scripts": {
"dev": "wrangler dev",
"publish": "wrangler publish",
"build": "",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"license": "AGPL-3.0-or-later",
"main": "src/index.js"
}