-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "movies-api",
"version": "0.1.0",
"description": "RESTful and GraphQL APIs for movies catalog",
"main": "src/handlers/graphql.ts",
"scripts": {
"dev": "sls offline start",
"test": "npm run codegen && jest",
"lint": "eslint . --ext .ts",
"deploy": "sls deploy",
"teardown": "sls remove",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"ts:check": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.ts",
"db:seed": "npm run codegen && ts-node -r tsconfig-paths/register ./scripts/seedData.ts"
},
"keywords": [
"serverless",
"apollo-server",
"contentful",
"jest",
"typescript"
],
"author": "This Dot Labs",
"license": "MIT",
"dependencies": {
"@apollo/server": "4.3.0",
"@as-integrations/aws-lambda": "1.2.1",
"@graphql-tools/merge": "8.3.15",
"aws-sdk": "2.1306.0",
"contentful": "^10.6.9",
"contentful-management": "10.26.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"lodash": "^4.17.21",
"serverless": "3.26.0"
},
"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",
"@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",
"esbuild": "^0.19.8",
"eslint": "8.32.0",
"jest": "29.3.1",
"prettier": "2.8.3",
"serverless-esbuild": "^1.49.0",
"serverless-offline": "12.0.4",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.9.4"
}
}