-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
91 lines (91 loc) · 2.7 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
{
"name": "@as-integrations/fastify",
"version": "2.1.1",
"description": "An Apollo Server integration for use with Fastify",
"license": "MIT",
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"bugs": "https://github.com/apollo-server-integrations/apollo-server-integration-fastify/issues",
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-fastify/blob/main/readme.md",
"author": {
"name": "Oliver Plummer",
"email": "oliver.plummer@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-fastify.git"
},
"engines": {
"node": ">=16"
},
"files": [
"build"
],
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"volta": {
"node": "20.9.0",
"npm": "10.2.4"
},
"scripts": {
"delete-build": "rimraf build",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"postbuild": "cross-env TS_NODE_PROJECT=\"tsconfig.json\" node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm scripts/postcompile.ts",
"prepublishOnly": "clear && npm run delete-build && npm run build",
"test": "clear && jest --verbose",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"lint": "eslint src scripts --ext .ts",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --write .",
"prettier-check": "prettier --check ."
},
"peerDependencies": {
"@apollo/server": "^4.0.0",
"fastify": "^4.4.0"
},
"devDependencies": {
"@apollo/server": "4.9.5",
"@apollo/server-integration-testsuite": "4.9.5",
"@apollo/utils.withrequired": "3.0.0",
"@jest/types": "29.6.3",
"@oly_op/cspell-dict": "1.0.115",
"@oly_op/eslint-config": "6.1.0",
"@oly_op/prettier-config": "1.3.2",
"@oly_op/tsconfig": "1.0.25",
"@swc/core": "1.3.82",
"@types/jest": "29.5.8",
"@types/node": "16.18.62",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.11.0",
"cross-env": "7.0.3",
"cspell": "7.3.9",
"eslint": "8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "48.0.1",
"fastify": "4.24.3",
"graphql": "16.8.1",
"jest": "29.7.0",
"jest-config": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.1.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"fastify-plugin": "^4.4.0"
}
}