-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
95 lines (95 loc) · 3.15 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
{
"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": "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": "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.23.5",
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"@babel/plugin-proposal-decorators": "7.23.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@changesets/cli": "2.27.1",
"@changesets/changelog-github": "0.5.0",
"@envelop/graphql-modules": "5.0.3",
"@graphql-tools/merge": "9.0.1",
"@graphql-yoga/node": "3.9.1",
"@types/benchmark": "2.1.5",
"graphql-jit": "0.8.4",
"@types/express": "5.0.0",
"@types/jest": "29.5.11",
"@types/node": "22.8.2",
"@types/ramda": "0.29.9",
"@typescript-eslint/eslint-plugin": "8.12.0",
"@typescript-eslint/parser": "8.12.0",
"apollo-server": "3.13.0",
"apollo-server-express": "3.13.0",
"apollo-datasource-rest": "3.7.0",
"artillery": "2.0.21",
"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",
"dataloader": "2.2.2",
"eslint": "9.13.0",
"express": "4.20.0",
"express-graphql": "0.12.0",
"globby": "14.0.0",
"graphql": "16.8.1",
"graphql-subscriptions": "2.0.0",
"graphql-ws": "5.14.2",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"patch-package": "8.0.0",
"prettier": "3.1.0",
"reflect-metadata": "0.1.13",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.3.2",
"ws": "8.17.1"
},
"prettier": {
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"overrides": [
{
"files": "*.{md,mdx}",
"options": {
"semi": false,
"trailingComma": "none",
"arrowParens": "avoid"
}
}
]
},
"lint-staged": {
"*.ts": "eslint",
"*{js,json,css,md,ts,tsx}": "prettier --write"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}