generated from apollographql/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "@apollo/datasource-rest",
"description": "REST DataSource for Apollo Server v4",
"version": "6.4.1",
"author": "Apollo <packages@apollographql.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollographql/datasource-rest"
},
"homepage": "https://github.com/apollographql/datasource-rest#readme",
"bugs": {
"url": "https://github.com/apollographql/datasource-rest/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.14"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"prepack": "npm run build",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"spell-check": "cspell lint '**' '.changeset/**' --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",
"changeset-add": "changeset add",
"changeset-publish": "changeset publish",
"changeset-check": "changeset status --verbose --since=origin/main"
},
"devDependencies": {
"@apollo/server": "4.11.2",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@types/jest": "29.5.14",
"@types/lodash.clonedeep": "4.5.9",
"@types/lodash.isplainobject": "4.0.9",
"@types/node": "16.18.122",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cspell": "8.17.1",
"eslint": "8.57.1",
"form-data": "4.0.1",
"graphql": "16.10.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"nock": "13.5.6",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@apollo/utils.fetcher": "^3.0.0",
"@apollo/utils.keyvaluecache": "^3.1.0",
"@apollo/utils.logger": "^3.0.0",
"@apollo/utils.withrequired": "^3.0.0",
"@types/http-cache-semantics": "^4.0.1",
"http-cache-semantics": "^4.1.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
"graphql": "^16.5.0"
},
"volta": {
"node": "20.18.1",
"npm": "10.9.2"
}
}