forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.95 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
{
"name": "graphql-code-generator",
"private": true,
"scripts": {
"postinstall": "patch-package && husky install",
"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 --forceExit --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"
},
"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",
"examples/*"
],
"nohoist": [
"@graphql-codegen/website/@docusaurus/*",
"**/@babel-*",
"**/@babel-*/**"
]
},
"devDependencies": {
"@apollo/client": "3.4.16",
"@babel/core": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@changesets/cli": "2.17.0",
"@graphql-typed-document-node/core": "3.1.0",
"@reduxjs/toolkit": "1.6.2",
"@types/common-tags": "1.8.1",
"@types/jest": "27.0.2",
"@types/mkdirp": "1.0.2",
"@types/node": "14.17.26",
"@types/react": "17.0.29",
"@types/webpack-env": "1.16.3",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"@urql/exchange-graphcache": "4.3.5",
"@vue/apollo-composable": "4.0.0-alpha.15",
"@vue/composition-api": "1.2.4",
"apollo-client": "2.6.10",
"apollo-server": "3.4.0",
"auto-bind": "4.0.0",
"babel-jest": "27.2.5",
"bob-the-bundler": "1.5.1",
"chalk": "4.1.2",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react-hooks": "4.2.0",
"flow-bin": "0.161.0",
"flow-parser": "0.162.0",
"fs-extra": "10.0.0",
"globby": "11.0.4",
"graphql": "15.6.1",
"graphql-tag": "2.12.5",
"husky": "7.0.2",
"java-ast": "0.3.0",
"jest": "27.2.5",
"jest-docblock": "27.0.6",
"jest-junit": "13.0.0",
"lint-staged": "11.2.3",
"lodash": "4.17.21",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "3.26.0",
"rimraf": "3.0.2",
"stencil-apollo": "0.1.6",
"ts-jest": "27.0.5",
"tslib": "2.3.1",
"typescript": "4.4.4",
"urql": "2.0.5",
"vue": "2.6.14",
"vue-apollo-smart-ops": "0.1.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
],
"yarn.lock": [
"npx yarn-deduplicate"
]
},
"resolutions": {
"prettier": "2.4.1",
"babel-jest": "27.2.5",
"jest-runner": "27.2.5",
"graphql": "15.6.1",
"graphql-language-service-interface": "2.8.4",
"**/apollo-language-server/graphql": "^15.0.0",
"**/@types/graphql-upload/graphql": "^15.0.0"
},
"dependencies": {
"dotenv": "10.0.0",
"patch-package": "6.4.7"
}
}