forked from ardatan/graphql-mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
{
"name": "graphql-mesh-monorepo",
"license": "MIT",
"version": "0.2.15",
"private": true,
"scripts": {
"postinstall": "patch-package",
"predeploy:website": "yarn generate-config-schema && yarn build:api-docs",
"deploy:website": "cd website && yarn deploy",
"generate-config-schema": "graphql-to-config-schema --schema ./**/yaml-config.graphql --json ./packages/types/src/config-schema.json --typings ./packages/types/src/config.ts --markdown ./website/docs/generated-markdown/ && prettier --write ./packages/types/src",
"prebuild": "yarn generate-config-schema",
"build": "tsc --project tsconfig.build.json && bob build",
"build:api-docs": "node scripts/build-api-docs.js",
"copy-config-schema": "cp ./packages/types/src/config-schema.json ./packages/types/dist/",
"fix-bin": "node scripts/fix-bin.js",
"copy-fhir-schema": "cp ./packages/handlers/fhir/src/fhir.schema.json ./packages/handlers/fhir/dist",
"postbuild": "yarn copy-config-schema && yarn copy-fhir-schema && yarn fix-bin",
"lint": "eslint --ext .ts \"./packages/**/src/*.ts\"",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\"",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{ts,tsx,graphql,yml}\"",
"test": "jest --no-watchman",
"test-and-build": "yarn build && yarn test",
"prerelease": "yarn build",
"release": "changeset publish",
"release:canary": "(node scripts/canary-release.js && yarn build && yarn changeset publish --tag alpha) || echo Skipping Canary..."
},
"devDependencies": {
"@ardatan/graphql-to-config-schema": "0.1.8",
"@changesets/cli": "2.14.0",
"@graphql-tools/schema": "7.1.3",
"@types/jest": "26.0.20",
"@types/node": "14.14.28",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"bob-the-bundler": "1.1.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"globby": "11.0.2",
"graphql": "15.5.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"patch-package": "6.2.2",
"prettier": "2.2.1",
"ts-jest": "26.5.1",
"ts-node-dev": "1.1.1",
"typedoc": "0.20.25",
"typedoc-plugin-markdown": "3.5.0",
"typescript": "4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,json}": [
"prettier --write"
]
},
"workspaces": {
"packages": [
"./packages/*",
"./packages/cache/*",
"./packages/handlers/*",
"./packages/transforms/*",
"./packages/mergers/*",
"./examples/*",
"./examples/federation-example/services/*",
"./examples/graphql-file-upload-example/frontend",
"./website"
],
"nohoist": [
"@graphql-mesh/website/@docusaurus/*"
]
},
"resolutions": {
"@changesets/git": "1.1.0",
"graphql": "15.5.0"
}
}