forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.21 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
130
131
132
{
"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": [
"@graphql-codegen/website/@docusaurus/*",
"**/@babel-*",
"**/@babel-*/**"
]
},
"devDependencies": {
"@apollo/client": "3.3.6",
"@babel/preset-typescript": "7.12.7",
"@changesets/cli": "2.12.0",
"@graphql-tools/apollo-engine-loader": "6.2.5",
"@graphql-tools/code-file-loader": "6.2.6",
"@graphql-tools/git-loader": "6.2.5",
"@graphql-tools/github-loader": "6.2.5",
"@graphql-tools/graphql-file-loader": "6.2.6",
"@graphql-tools/json-file-loader": "6.2.6",
"@graphql-tools/load": "6.2.5",
"@graphql-tools/prisma-loader": "6.2.7",
"@graphql-tools/url-loader": "6.7.1",
"@graphql-tools/utils": "7.2.3",
"@graphql-typed-document-node/core": "3.1.0",
"@types/common-tags": "1.8.0",
"@types/glob": "7.1.3",
"@types/jest": "26.0.19",
"@types/mkdirp": "1.0.1",
"@types/node": "14.14.16",
"@types/react": "17.0.0",
"@types/request": "2.48.5",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"@vue/apollo-composable": "4.0.0-alpha.12",
"@vue/composition-api": "0.6.7",
"apollo-cache": "1.3.5",
"apollo-client": "2.6.10",
"apollo-link": "1.2.14",
"apollo-server": "2.19.1",
"apollo-utilities": "1.3.4",
"auto-bind": "4.0.0",
"bob-the-bundler": "1.1.0",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "5.0.0",
"flow-bin": "0.141.0",
"flow-parser": "0.141.0",
"fs-extra": "9.0.1",
"graphql": "15.4.0",
"graphql-config": "3.2.0",
"graphql-tag": "2.11.0",
"husky": "4.3.6",
"java-ast": "0.3.0",
"jest": "26.6.3",
"jest-docblock": "26.0.0",
"jest-junit": "12.0.0",
"lint-staged": "10.5.3",
"lodash": "4.17.20",
"npm": "6.14.10",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "3.5.5",
"rimraf": "3.0.2",
"stencil-apollo": "0.1.6",
"ts-jest": "26.4.4",
"tslib": "2.0.3",
"typescript": "4.1.3",
"urql": "1.11.4",
"vue": "2.6.12"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"resolutions": {
"graphql": "15.4.0",
"graphql-language-service-interface": "2.5.0",
"**/apollo-language-server/graphql": "^15.0.0",
"**/@types/graphql-upload/graphql": "^15.0.0"
},
"dependencies": {
"dotenv": "8.2.0",
"patch-package": "6.2.2"
}
}