forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "graphql-code-generator",
"private": true,
"scripts": {
"postinstall": "patch-package",
"clean": "rimraf node_modules packages/{*,plugins/*/*,presets/*,utils/*}/node_modules",
"prebuild": "rimraf packages/{*,plugins/*/*,presets/*,utils/*}/dist",
"build": "tsc --project tsconfig.json && bob build",
"watch-build": "npx tsc-watch --project tsconfig.json --onSuccess \"bob build\"",
"test": "jest --no-watchman",
"lint": "eslint --ext .ts .",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\"",
"prettier:check": "prettier --ignore-path .gitignore --check \"**/*.{ts,tsx,graphql,yml}\"",
"types:check": "tsc --noEmit",
"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...",
"generate:examples": "node packages/graphql-codegen-cli/dist/bin.js --require dotenv/config --config ./dev-test/codegen.yml dotenv_config_path=dev-test/.env"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"workspaces": {
"packages": [
"packages/*",
"packages/utils/*",
"packages/plugins/flow/*",
"packages/plugins/java/*",
"packages/plugins/c-sharp/*",
"packages/plugins/typescript/*",
"packages/plugins/other/*",
"packages/presets/*",
"website",
"website/live-demo"
],
"nohoist": [
"**/@babel-*",
"**/@babel-*/**"
]
},
"devDependencies": {
"@apollo/client": "3.1.3",
"@babel/preset-typescript": "7.10.4",
"@changesets/cli": "2.10.0",
"@graphql-tools/apollo-engine-loader": "6.0.18",
"@graphql-tools/code-file-loader": "6.0.18",
"@graphql-tools/git-loader": "6.0.18",
"@graphql-tools/github-loader": "6.0.18",
"@graphql-tools/graphql-file-loader": "6.0.18",
"@graphql-tools/json-file-loader": "6.0.18",
"@graphql-tools/load": "6.0.18",
"@graphql-tools/prisma-loader": "6.0.18",
"@graphql-tools/url-loader": "6.0.18",
"@graphql-tools/utils": "6.0.18",
"@graphql-typed-document-node/core": "3.0.0",
"@types/common-tags": "1.8.0",
"@types/glob": "7.1.3",
"@types/jest": "26.0.9",
"@types/mkdirp": "1.0.1",
"@types/node": "14.0.27",
"@types/react": "16.9.46",
"@types/request": "2.48.5",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"@vue/apollo-composable": "4.0.0-alpha.10",
"@vue/composition-api": "0.6.7",
"apollo-cache": "1.3.5",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"apollo-server": "2.16.1",
"apollo-utilities": "1.3.4",
"auto-bind": "4.0.0",
"bob-the-bundler": "1.1.0",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react-hooks": "4.0.8",
"eslint-plugin-standard": "4.0.1",
"flow-bin": "0.131.0",
"flow-parser": "0.131.0",
"fs-extra": "9.0.1",
"graphql": "15.3.0",
"graphql-config": "^3.0.2",
"graphql-tag": "2.11.0",
"husky": "4.2.5",
"java-ast": "0.3.0",
"jest": "26.4.0",
"jest-docblock": "26.0.0",
"jest-junit": "11.1.0",
"lint-staged": "10.2.11",
"lodash": "4.17.19",
"npm": "6.14.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"rimraf": "3.0.2",
"stencil-apollo": "0.1.5",
"ts-jest": "26.2.0",
"tslib": "2.0.0",
"typescript": "3.9.7",
"urql": "1.10.0",
"vue": "2.6.11"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"resolutions": {
"graphql": "15.3.0",
"graphql-language-service-interface": "2.4.0",
"**/apollo-language-server/graphql": "^15.0.0",
"**/@types/graphql-upload/graphql": "^15.0.0"
},
"dependencies": {
"patch-package": "^6.2.2"
}
}