-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "aws-node-typescript-apollo-lambda",
"version": "1.0.0",
"description": "Serverless example for apollo lambda",
"main": "handler.js",
"scripts": {
"deploy": "serverless deploy",
"dev": "serverless offline --apiKey your-api-key-that-is-at-least-characters-long",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"dependencies": {
"apollo-server-lambda": "^3.12.0",
"graphql": "^16.8.0",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.17",
"@types/node": "^20.5.7",
"eslint": "^8.48.0",
"serverless": "^3.34.0",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^12.0.4",
"serverless-plugin-typescript": "^2.1.5",
"ts-loader": "^9.4.4",
"tslint": "^5",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^5.2.2"
},
"author": "Miguel Frazao (https://github.com/jmpfrazao/aws-node-typescript-apollo-lambda)",
"contributors": [
{
"name": "Maike Negreiros",
"url": "https://github.com/maikenegreiros"
}
],
"license": "MIT"
}