-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
110 lines (110 loc) · 2.79 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@saeris/apollo-server-vercel",
"description": "Production-ready Node.js GraphQL server for Vercel Serverless Functions",
"version": "1.0.1",
"keywords": [
"GraphQL",
"Apollo",
"Server",
"Vercel",
"Typescript"
],
"author": "Drake Costa <[email protected]> (https://github.com/Saeris/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saeris/apollo-server-vercel.git"
},
"homepage": "https://github.com/saeris/apollo-server-vercel#readme",
"bugs": {
"url": "https://github.com/saeris/apollo-server-vercel/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "src/index.ts",
"engines": {
"node": ">=12 <15"
},
"scripts": {
"ci": "yarn install --ignore-scripts --frozen-lockfile --silent --non-interactive",
"build": "pika build",
"build:docs": "fiddly",
"lint": "yarn test:lint",
"release": "np",
"start": "vercel dev",
"test": "yarn test:lint && yarn test:typecheck && yarn test:unit",
"test:lint": "eslint \"./src/**/*.{j,t}s?(x)\"",
"test:typecheck": "tsc --noEmit",
"test:unit": "jest",
"test:watch": "yarn test:unit --watch",
"typecheck": "yarn test:typecheck",
"version": "yarn build"
},
"dependencies": {
"@apollographql/graphql-playground-html": "1.6.29",
"@vercel/node": "^1.12.1",
"apollo-server-core": "2.25.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@saeris/eslint-config": "^2.0.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.3",
"@types/micro": "^7.3.6",
"@types/node": "^16.11.10",
"@types/supertest": "^2.0.11",
"cross-env": "^7.0.3",
"eslint": "^7.6.0",
"fiddly": "^0.12.0",
"husky": "^4.2.5",
"jest": "^27.3.1",
"js-sha256": "^0.9.0",
"lint-staged": "^12.1.2",
"micro": "^9.3.4",
"np": "^7.6.0",
"prettier": "2.4.1",
"supertest": "^6.1.6",
"typescript": "4.4.4",
"vercel": "^23.1.2",
"vercel-node-server": "^2.2.1"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.x || >=15.x <16.0.0"
},
"resolutions": {
"graphql": "^15.x"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"*.gql",
"__mocks__/**/*",
"__test__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-types"
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}