-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "apollo-utils-monorepo",
"private": "true",
"description": "Monorepo for Apollo and GraphQL-related utilities packages",
"keywords": [
"apollo",
"graphql",
"typescript"
],
"author": "Apollo <packages@apollographql.com>",
"license": "MIT",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"clean": "git clean -dfqX",
"build": "tsc --build tsconfig.build.json",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"postinstall": "npm run build",
"pretest": "tsc --build tsconfig.json",
"test": "jest --verbose",
"test:ci": "npm test -- --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "npm run build -- --watch",
"changeset-publish": "changeset publish",
"install-with-npm-8.5": "npm i -g npm@^8.5.0 && npm i",
"lint": "eslint packages/*/src/**/*.ts"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@apollo/client": "3.10.5",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.5",
"@jest/types": "29.6.3",
"@types/bunyan": "1.8.11",
"@types/glob": "8.1.0",
"@types/jest": "29.5.12",
"@types/lodash.sortby": "4.7.9",
"@types/make-fetch-happen": "10.0.4",
"@types/node": "16.18.98",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"bunyan": "1.8.15",
"crypto-hash": "1.3.0",
"eslint": "8.57.0",
"graphql": "16.8.2",
"graphql-tag": "2.12.6",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"log4js": "6.9.1",
"loglevel": "1.9.1",
"make-fetch-happen": "13.0.1",
"node-fetch": "2.7.0",
"prettier": "3.3.2",
"prettier-2": "npm:prettier@2.8.8",
"ts-expect": "1.3.0",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"undici": "5.28.4",
"winston": "3.13.0",
"winston-transport": "4.7.0"
},
"volta": {
"node": "20.14.0",
"npm": "10.8.1"
}
}