-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "apollo-datasource-lambda",
"version": "1.0.5",
"description": "AWS Lambda DataSource for Apollo GraphQL projects",
"main": "index.js",
"engines": {
"node": ">=10.6.0",
"npm": ">=6.1.0"
},
"scripts": {
"lint": "prettier '**/*.js' && eslint '**/*.js'",
"lint:fix": "prettier --write '**/*.js' && eslint --fix '**/*.js'",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/perrygeorget/apollo-datasource-lambda.git"
},
"keywords": [
"apollo",
"apollo-server",
"datasource",
"graphql",
"aws",
"lambda"
],
"author": "George Perry",
"license": "MIT",
"bugs": {
"url": "https://github.com/perrygeorget/apollo-datasource-lambda/issues"
},
"homepage": "https://github.com/perrygeorget/apollo-datasource-lambda#readme",
"dependencies": {
"apollo-datasource": "^0.6.4",
"apollo-server-caching": "^0.5.2",
"aws-sdk": "^2.600.0",
"bunyan": "^1.8.12",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.3",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"peerDependencies": {
"graphql": "^14.0.2"
}
}