-
Notifications
You must be signed in to change notification settings - Fork 469
/
package.json
91 lines (91 loc) · 2.8 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": "apollo-tooling-monorepo",
"private": true,
"homepage": "https://github.com/apollographql/apollo-tooling",
"bugs": "https://github.com/apollographql/apollo-tooling/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/apollo-tooling.git"
},
"license": "MIT",
"author": "Apollo GraphQL <[email protected]>",
"bin": {
"apollo": "./packages/apollo/bin/run"
},
"scripts": {
"clean": "git clean -dfqX -- ./node_modules **/{lib,node_modules}/ ./packages/*/tsconfig.tsbuildinfo ./__tmp__*",
"postinstall": "npm run build",
"build": "tsc --build tsconfig.json",
"build:clean": "npm run build -- --clean",
"watch": "npm run build -- --watch",
"test": "jest",
"test:ci": "npm run test -- --ci --maxWorkers=2",
"lint": "prettier --list-different \"packages/*/src/**/*.{js,jsx,ts,tsx}\"",
"lint-fix": "prettier --write \"packages/*/src/**/*.{js,jsx,ts,tsx}\"",
"changeset-publish": "changeset publish",
"client:codegen": "node ./packages/apollo/bin/run client:codegen --target=typescript --outputFlat ./packages/apollo-language-server/src/graphqlTypes.ts",
"install-with-npm-8.5": "npm i -g npm@^8.5.0 && npm i"
},
"engines": {
"node": ">=8 <17",
"npm": ">=8.5.0 <9.x"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "0.4.5",
"@changesets/cli": "2.23.0",
"@fancy-test/nock": "0.1.1",
"@oclif/dev-cli": "1.26.10",
"@oclif/test": "2.1.0",
"@types/babel__generator": "7.6.4",
"@types/babel-types": "7.0.11",
"@types/common-tags": "1.8.1",
"@types/core-js": "2.5.5",
"@types/gaze": "1.1.2",
"@types/glob": "7.2.0",
"@types/inflected": "1.1.29",
"@types/jest": "28.1.3",
"@types/listr": "0.14.4",
"@types/lodash": "4.14.182",
"@types/lodash.debounce": "4.0.7",
"@types/lodash.identity": "3.0.7",
"@types/lodash.merge": "4.6.7",
"@types/lodash.pickby": "4.6.7",
"@types/lodash.sortby": "4.7.7",
"@types/minimatch": "3.0.5",
"@types/mkdirp": "1.0.2",
"@types/nock": "10.0.3",
"@types/node": "8.10.66",
"@types/node-fetch": "2.6.2",
"@types/sha.js": "2.4.0",
"@types/table": "6.0.0",
"@types/vscode": "1.68.1",
"chai": "4.3.6",
"cross-env": "7.0.3",
"graphql": "15.2.0",
"heroku-cli-util": "8.0.12",
"jest": "28.1.1",
"jest-environment-node": "28.1.1",
"jest-matcher-utils": "28.1.1",
"memfs": "3.4.7",
"nock": "13.2.7",
"prettier": "2.7.1",
"stdout-stderr": "0.1.13",
"symlink-dir": "5.0.1",
"ts-jest": "28.0.5",
"ts-node": "10.8.1",
"typescript": "4.7.4",
"yarn": "1.22.19"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"volta": {
"node": "16.15.1",
"npm": "8.13.1"
}
}