generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "@as-integrations/google-cloud-functions",
"description": "An integration to use Google Cloud Functions as a hosting service with Apollo Server",
"version": "0.2.1",
"author": {
"name": "Ernesto Resende",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "git clean -dfqX",
"prepack": "npm run build",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"lint": "eslint ."
},
"peerDependencies": {
"@apollo/server": "^4.3.0",
"@google-cloud/functions-framework": "^3.1.3"
},
"devDependencies": {
"@apollo/server": "4.11.2",
"@apollo/server-integration-testsuite": "4.11.2",
"@apollo/utils.withrequired": "3.0.0",
"@google-cloud/functions-framework": "3.4.2",
"@types/jest": "29.5.14",
"@types/node": "16.18.119",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-google-cloud-functions"
},
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-google-cloud-functions#readme",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-google-cloud-functions/issues"
},
"engines": {
"node": ">=16.0"
},
"volta": {
"node": "20.18.0",
"npm": "10.9.0"
}
}