-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "typescript-serverless-graphql",
"version": "1.0.0",
"repository": "https://github.com/ramonpm/typescript-serverless-graphql.git",
"author": "Ramon de Paula Marques <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "sls offline start --useSeparateProcesses",
"test": "jest"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.27",
"@types/graphql": "^14.2.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"@types/uuid": "^3.4.5",
"apollo-server-testing": "^2.6.7",
"dotenv": "^8.0.0",
"jest": "^24.8.0",
"lodash": "^4.17.14",
"node.extend": "^1.1.7",
"serverless": "^1.46.1",
"serverless-dynamodb-local": "^0.2.38",
"serverless-offline": "^5.6.0",
"serverless-webpack": "^5.3.1",
"source-map-support": "^0.5.12",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"apollo-server-lambda": "^2.6.7",
"aws-sdk": "^2.488.0",
"graphql": "^14.4.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.4"
}
}