forked from contra/graphql-helix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "graphql-helix",
"version": "1.0.0",
"private": true,
"description": "A highly evolved GraphQL HTTP Server 🧬",
"repository": "[email protected]:contrawork/graphql-helix.git",
"license": "MIT",
"author": "Daniel Rearden <[email protected]>",
"main": "index.js",
"workspaces": [
"packages/core",
"packages/graphiql",
"examples/*",
"website"
],
"scripts": {
"prepare": "yarn husky install",
"prerelease": "yarn build",
"release": "changeset publish",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag canary) || echo Skipping Canary...",
"build": "yarn workspace graphql-helix build",
"test": "yarn workspace graphql-helix test",
"lint": "eslint --ext .ts,.tsx .",
"update-examples": "node scripts/update-examples",
"loadtest:start-server": "node ./benchmark/server.js",
"web": "yarn workspace @graphql-helix/website dev",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "2.18.1",
"@types/k6": "0.35.2",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"prettier": "2.5.0",
"patch-package": "6.4.7",
"wait-on": "6.0.0"
},
"resolutions": {
"graphql": "16.0.0-experimental-stream-defer.5"
}
}