-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "serverless-framework-apollo-contentful",
"version": "1.0.0",
"description": "Serverless Framework, Apollo Server, and Contentful CMS",
"main": "src/handlers/graphql.ts",
"scripts": {
"dev": "sls offline start",
"test": "npm run codegen && jest",
"lint": "eslint . --ext .ts",
"infrastructure:up": "docker compose up -d",
"infrastructure:pause": "docker compose stop",
"infrastructure:down": "docker compose down --remove-orphans --volumes",
"deploy": "sls deploy",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"ts:check": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.ts",
"db:seed": "npm run codegen && ts-node ./scripts/seed.ts"
},
"keywords": [
"serverless",
"apollo-server",
"contentful",
"jest",
"typescript",
"redis",
"aws-sqs"
],
"hasShowcase": false,
"author": "This Dot Labs",
"license": "MIT",
"dependencies": {
"@apollo/server": "4.9.3",
"@apollo/utils.keyvadapter": "2.0.0",
"@as-integrations/aws-lambda": "1.2.1",
"@aws-sdk/client-sqs": "3.259.0",
"@keyv/redis": "2.5.4",
"aws-sdk": "2.1306.0",
"contentful-management": "10.26.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"keyv": "4.5.2",
"serverless": "3.26.0",
"serverless-offline-sqs": "7.3.2",
"serverless-plugin-typescript": "2.1.4"
},
"devDependencies": {
"@aws-sdk/types": "3.267.0",
"@graphql-codegen/cli": "2.16.4",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/typescript": "2.8.7",
"@graphql-codegen/typescript-resolvers": "2.7.12",
"@graphql-tools/executor": "0.0.12",
"@graphql-tools/merge": "8.3.15",
"@types/aws-lambda": "8.10.109",
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"dotenv": "16.0.3",
"eslint": "8.32.0",
"jest": "29.3.1",
"prettier": "2.8.3",
"serverless-dotenv-plugin": "4.0.2",
"serverless-offline": "12.0.4",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}