-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.34 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
111
112
113
{
"author": "Martin Nabhan",
"description": "An Apollo Server integration for use with Next.js",
"devDependencies": {
"@apollo/server": "4.10.5",
"@apollo/server-integration-testsuite": "4.10.5",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@types/node": "18.19.42",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"babel-plugin-tsconfig-paths-module-resolver": "1.0.4",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"jest": "29.7.0",
"next": "14.2.5",
"next12": "npm:[email protected]",
"next13": "npm:[email protected]",
"next14": "npm:[email protected]",
"prettier": "3.3.3",
"typescript": "5.5.4",
"wireit": "0.14.5"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@as-integrations/next",
"peerDependencies": {
"@apollo/server": "^4.0.0",
"next": "^12.0.0 || ^13.0.0 || ^14.0.0"
},
"repository": "https://github.com/apollo-server-integrations/apollo-server-integration-next",
"scripts": {
"build": "wireit",
"check": "wireit",
"check:changeset": "bash -c 'AUTHOR=$(git show -s --format=\"%ae\" HEAD); if [[ $AUTHOR != *\"renovate\"* ]] && [[ $AUTHOR != *\"github-actions\"* ]]; then changeset status --since=origin/main; fi'",
"check:eslint": "wireit",
"check:prettier": "wireit",
"check:tsc": "wireit",
"fix": "wireit",
"fix:eslint": "wireit",
"fix:prettier": "wireit",
"prepack": "npm run build",
"publish:changeset": "changeset publish",
"test": "wireit",
"test:next": "DEBUG_PRINT_LIMIT=2147483647 __NEXT_TEST_MODE=jest jest",
"test:next12": "NEXT_VERSION=12 npm run test:next",
"test:next13": "NEXT_VERSION=13 npm run test:next",
"test:next14": "NEXT_VERSION=14 npm run test:next"
},
"types": "dist/index.d.ts",
"version": "3.0.0",
"wireit": {
"build": {
"command": "tsc -p tsconfig.build.json",
"dependencies": [
"check:eslint",
"check:prettier"
],
"output": [
"./dist/**/*"
]
},
"check": {
"dependencies": [
"check:changeset",
"check:eslint",
"check:prettier",
"check:tsc"
]
},
"check:eslint": {
"command": "eslint --ignore-path .prettierignore $(git diff --diff-filter d --name-only HEAD~1 | grep -E '\\.(js|ts)$' | xargs)"
},
"check:prettier": {
"command": "prettier --check $(git diff --diff-filter d --name-only HEAD~1 | xargs)"
},
"check:tsc": {
"command": "tsc --noEmit"
},
"fix": {
"dependencies": [
"fix:eslint",
"fix:prettier"
]
},
"fix:eslint": {
"command": "eslint --fix --ignore-path .prettierignore $(git diff --diff-filter d --name-only HEAD~1 | grep -E '\\.(js|ts)$' | xargs)"
},
"fix:prettier": {
"command": "prettier --write $(git diff --diff-filter d --name-only HEAD~1 | xargs)"
},
"test": {
"dependencies": [
"test:next12",
"test:next13",
"test:next14"
]
}
}
}