-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathpackage.json
96 lines (96 loc) · 3.3 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
{
"name": "graphql-modules-platform",
"private": true,
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"scripts": {
"prepare": "husky install",
"postinstall": "patch-package",
"ts:check": "tsc --project tsconfig.json --noEmit",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint \"packages/**/*.{js,jsx,ts,tsx}\" --output-file eslint_report.json --format json",
"build": "tsc --project tsconfig.json && bob build",
"test": "jest --config jest.config.base.js",
"prerelease": "yarn build",
"release": "changeset publish",
"format": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --check --write \"{packages,website}/**/*.{js,jsx,json,css,md,mdx,ts,tsx}\"",
"pr": "changeset",
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint \"packages/**/*.{js,jsx,ts,tsx}\"",
"benchmark:basic": "NODE_ENV=production ts-node --project tsconfig.app.json benchmark/basic.case.ts",
"deploy-website": "cd website && yarn && yarn build && mkdir graphql-modules && mv build/* graphql-modules && mv graphql-modules build"
},
"devDependencies": {
"@apollo/federation": "0.38.1",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@changesets/cli": "2.27.11",
"@changesets/changelog-github": "0.5.0",
"@envelop/graphql-modules": "6.0.0",
"@graphql-tools/merge": "9.0.17",
"@graphql-yoga/node": "3.9.1",
"@types/benchmark": "2.1.5",
"graphql-jit": "0.8.7",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.9",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"apollo-server": "3.13.0",
"apollo-server-express": "3.13.0",
"apollo-datasource-rest": "3.7.0",
"artillery": "2.0.22",
"benchmark": "2.1.4",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"babel-jest": "29.7.0",
"bob-the-bundler": "1.7.3",
"chalk": "4.1.2",
"cross-env": "7.0.3",
"dataloader": "2.2.3",
"eslint": "9.18.0",
"express": "4.21.2",
"express-graphql": "0.12.0",
"globby": "14.0.2",
"graphql": "16.10.0",
"graphql-subscriptions": "3.0.0",
"graphql-ws": "6.0.2",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.2",
"patch-package": "8.0.0",
"prettier": "3.4.2",
"reflect-metadata": "0.2.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"ws": "8.18.0"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"overrides": [
{
"files": "*.{md,mdx}",
"options": {
"semi": false,
"trailingComma": "none",
"arrowParens": "avoid"
}
}
]
},
"lint-staged": {
"*.ts": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint",
"*{js,json,css,md,ts,tsx}": "prettier --write"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}