-
Notifications
You must be signed in to change notification settings - Fork 470
/
Copy pathpackage.json
118 lines (118 loc) · 3.05 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
114
115
116
117
118
{
"name": "apollo",
"description": "Command line tool for Apollo GraphQL",
"version": "2.34.0",
"referenceID": "21ad0845-c235-422e-be7d-a998310df972",
"author": "Apollo GraphQL <packages@apollographql.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/apollo-tooling.git"
},
"homepage": "https://github.com/apollographql/apollo-tooling",
"bugs": "https://github.com/apollographql/apollo-tooling/issues",
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"apollo": "./bin/run"
},
"scripts": {
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"version": "cross-env COLUMNS=74 oclif-dev readme && git add README.md"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"dependencies": {
"@apollographql/apollo-tools": "0.5.4",
"@oclif/command": "1.8.16",
"@oclif/config": "1.18.3",
"@oclif/errors": "1.3.5",
"@oclif/plugin-autocomplete": "1.3.0",
"@oclif/plugin-help": "5.1.12",
"@oclif/plugin-not-found": "2.3.1",
"@oclif/plugin-plugins": "2.1.0",
"@oclif/plugin-warn-if-update-available": "2.0.4",
"apollo-codegen-core": "0.40.9",
"apollo-codegen-flow": "0.38.9",
"apollo-codegen-scala": "0.39.9",
"apollo-codegen-swift": "0.40.9",
"apollo-codegen-typescript": "0.40.9",
"apollo-env": "0.10.2",
"apollo-graphql": "0.9.7",
"apollo-language-server": "1.26.9",
"chalk": "4.1.2",
"env-ci": "7.1.0",
"gaze": "1.1.3",
"git-parse": "3.0.1",
"git-rev-sync": "3.0.2",
"git-url-parse": "11.6.0",
"glob": "8.0.1",
"global-agent": "3.0.0",
"graphql": "14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0",
"graphql-tag": "2.12.6",
"listr": "0.14.3",
"lodash.identity": "3.0.0",
"lodash.pickby": "4.6.0",
"mkdirp": "1.0.4",
"moment": "2.29.3",
"strip-ansi": "6.0.1",
"table": "6.8.0",
"tty": "1.0.1",
"vscode-uri": "1.0.6"
},
"devDependencies": {
"typescript": "4.6.4"
},
"oclif": {
"commands": "./lib/commands",
"bin": "apollo",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available"
],
"repositoryPrefix": "<%- repo %>/blob/master/packages/apollo/<%- commandPath %>"
},
"jest": {
"preset": "ts-jest",
"transformIgnorePatterns": [
"/node_modules/"
],
"setupFiles": [
"apollo-env"
],
"testMatch": null,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules",
"lib"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.test.json",
"diagnostics": false
}
},
"setupFilesAfterEnv": [
"<rootDir>/test-utils/setup.js"
]
}
}