-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2 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
{
"name": "@as-integrations/aws-lambda",
"description": "An Apollo Server integration for hosting on AWS Lambda",
"version": "3.1.0",
"author": "Michael Watson & Daniel Abdelsamed",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda"
},
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda#readme",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-aws-lambda/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"engines": {
"node": ">=16.0"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"prepack": "npm run build",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"publish-changeset": "changeset publish",
"spell-check": "cspell lint '**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "tsc --build --watch",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@types/aws-lambda": "^8.10.106"
},
"devDependencies": {
"@apollo/server": "4.9.5",
"@apollo/server-integration-testsuite": "4.9.5",
"@apollo/utils.withrequired": "3.0.0",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@types/jest": "29.5.8",
"@types/node": "16.18.61",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"cspell": "7.3.9",
"eslint": "8.53.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"@apollo/server": "^4.0.0"
},
"volta": {
"node": "20.9.0",
"npm": "10.2.3"
}
}