This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
forked from apollographql/apollo-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2 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 <[email protected]>",
"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.8.3",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@jest/types": "29.6.3",
"@types/bunyan": "1.8.8",
"@types/glob": "8.1.0",
"@types/jest": "29.5.4",
"@types/lodash.sortby": "4.7.7",
"@types/make-fetch-happen": "10.0.1",
"@types/node": "16.18.50",
"@types/node-fetch": "2.6.4",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"bunyan": "1.8.15",
"crypto-hash": "1.3.0",
"eslint": "8.49.0",
"graphql": "16.8.0",
"graphql-tag": "2.12.6",
"jest": "29.6.4",
"jest-junit": "16.0.0",
"log4js": "6.9.1",
"loglevel": "1.8.1",
"make-fetch-happen": "12.0.0",
"node-fetch": "2.7.0",
"prettier": "3.0.3",
"prettier-2": "npm:[email protected]",
"ts-expect": "1.3.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"undici": "5.24.0",
"winston": "3.10.0",
"winston-transport": "4.5.0"
},
"volta": {
"node": "18.17.1",
"npm": "10.1.0"
}
}