-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.93 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
{
"private": true,
"author": "Dotan Simha <[email protected]>",
"license": "MIT",
"workspaces": [
"./website",
"./packages/*",
"./packages/plugins/*",
"./examples/apollo-server",
"./examples/graphql-ws",
"./examples/graphql-sse",
"./examples/graphql-socket.io",
"./examples/simple-http",
"./examples/graphql-helix",
"./examples/graphql-helix-auth0",
"./examples/lambda-aws",
"./examples/azure-functions",
"./examples/google-cloud-functions",
"./examples/cloudflare-workers",
"./examples/with-esm",
"./examples/typegraphql",
"./examples/nexus",
"./examples/express-graphql"
],
"scripts": {
"prepare": "husky install",
"postinstall": "patch-package",
"lint": "eslint --config .eslintrc.json --ext .ts .",
"prebuild": "rimraf packages/*/dist packages/plugins/*/dist",
"build": "tsc --project tsconfig.build.json && bob build",
"ts:check": "tsc --noEmit",
"test": "jest",
"test:ci": "jest --coverage",
"prerelease": "yarn build",
"release": "changeset publish",
"loadtest:start-server": "NODE_ENV=production node ./benchmark/app.js",
"loadtest:run": "k6 -e GRAPHQL_HOSTNAME=0.0.0.0 run ./benchmark/k6.js",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary...",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\""
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.2",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@changesets/cli": "2.21.1",
"@graphql-tools/schema": "8.3.2",
"@types/benchmark": "2.1.1",
"@types/jest": "27.4.1",
"@types/k6": "0.36.0",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"apollo-server": "3.5.0",
"benchmark": "2.1.4",
"bob-the-bundler": "1.6.1",
"chalk": "5.0.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "6.0.0",
"faker": "5.5.3",
"globby": "11.1.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.5",
"patch-package": "6.4.7",
"prettier": "2.5.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.7.0",
"typescript": "4.4.4",
"wait-on": "6.0.1"
},
"resolutions": {
"@changesets/git": "1.3.1",
"esbuild": "^0.14.0",
"prettier": "2.5.1",
"graphql": "16.3.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
}
}