-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) 路 2.86 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) 路 2.86 KB
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
{
"name": "schema-stitching",
"repository": {
"type": "git",
"url": "git+https://github.com/ardatan/schema-stitching.git"
},
"homepage": "https://github.com/ardatan/schema-stitching#readme",
"bugs": {
"url": "https://github.com/ardatan/schema-stitching/issues"
},
"author": {
"name": "Arda TANRIKULU",
"email": "ardatanrikulu@gmail.com"
},
"private": true,
"workspaces": {
"packages": [
"website",
"examples/*",
"examples/subservice-languages/*"
]
},
"packageManager": "yarn@1.22.22",
"keywords": [
"GraphQL",
"JavaScript",
"TypeScript",
"Stitching",
"Schema",
"Federation",
"Delegation",
"Gateway",
"Microservices"
],
"scripts": {
"ci:lint": "eslint --ext .ts . --output-file eslint_report.json --format json",
"lint": "eslint --ext .ts .",
"postinstall": "node ./scripts/shim-typescript7-api.cjs && patch-package",
"prettier": "prettier --cache --write --list-different .",
"prettier:check": "prettier --cache --check .",
"test": "cross-env \"NODE_OPTIONS=--no-experimental-webstorage\" jest --runInBand --forceExit"
},
"devDependencies": {
"@babel/core": "8.0.5",
"@babel/plugin-proposal-decorators": "8.0.2",
"@babel/plugin-transform-class-properties": "8.0.1",
"@babel/preset-env": "8.0.5",
"@babel/preset-typescript": "8.0.1",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@theguild/prettier-config": "3.0.1",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "8.70.0",
"@typescript-eslint/parser": "8.70.0",
"@typescript/typescript6": "6.0.2",
"array.prototype.flatmap": "1.3.3",
"babel-jest": "30.5.1",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.4.0",
"cross-env": "10.1.0",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "18.3.0",
"eslint-plugin-promise": "7.3.0",
"husky": "9.1.7",
"jest": "30.5.1",
"lint-staged": "17.5.1",
"patch-package": "8.0.1",
"prettier": "3.9.6",
"typescript": "7.0.2"
},
"resolutions": {
"@xmldom/xmldom": "0.9.12",
"cookie": "2.0.1",
"cross-spawn": "7.0.6",
"esbuild": "^0.28.0",
"estree-util-value-to-estree": "^3.3.3",
"form-data": "4.0.6",
"glob": "13.0.6",
"graphql": "17.0.2",
"lodash-es": "4.18.1",
"on-headers": "1.1.0",
"postcss": "^8.5.14",
"react-medium-image-zoom": "5.4.9",
"sharp": "^0.35.0",
"uuid": "14.0.2"
},
"lint-staged": {
"examples/**/src/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,json}": [
"prettier --write"
]
},
"yarn": {
"args": [
"ignore-engines"
]
}
}