forked from dotansimha/graphql-code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.59 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
{
"name": "graphql-code-generator",
"private": true,
"scripts": {
"postinstall": "patch-package && husky install",
"clean": "rimraf node_modules/",
"prebuild": "rimraf dist/ .bob/ tsconfig.tsbuildinfo",
"build": "bob build",
"watch-build": "npx tsc-watch --project tsconfig.json --onSuccess \"bob build\"",
"test": "jest --forceExit --no-watchman",
"lint": "eslint --cache --ignore-path .gitignore .",
"prettier": "prettier --cache --write --list-different .",
"prettier:check": "prettier --cache --check .",
"types:check": "tsc --noEmit",
"test-and-build": "yarn build && yarn test",
"ci:lint": "eslint --cache --ignore-path .gitignore --output-file eslint_report.json --format json .",
"prerelease": "yarn build",
"release": "changeset publish",
"generate:examples:esm": "node packages/graphql-codegen-cli/dist/esm/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env",
"generate:examples:cjs": "node packages/graphql-codegen-cli/dist/cjs/bin.js --require dotenv/config --config ./dev-test/codegen.ts dotenv_config_path=dev-test/.env",
"generate:examples": "yarn generate:examples:cjs"
},
"workspaces": [
"packages/*",
"packages/utils/*",
"packages/plugins/typescript/*",
"packages/plugins/other/*",
"packages/presets/*",
"website",
"examples/*"
],
"devDependencies": {
"@apollo/client": "3.6.9",
"@babel/core": "7.19.0",
"@babel/preset-env": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.4",
"@graphql-typed-document-node/core": "3.1.1",
"@reduxjs/toolkit": "1.8.5",
"@tanstack/react-query": "4.2.3",
"@theguild/eslint-config": "0.5.0",
"@theguild/prettier-config": "0.1.1",
"@types/common-tags": "1.8.1",
"@types/jest": "28.1.8",
"@types/mkdirp": "1.0.2",
"@types/node": "18.11.18",
"@types/react": "18.0.18",
"@types/webpack-env": "1.18.0",
"@urql/exchange-graphcache": "5.0.5",
"@vue/apollo-composable": "4.0.0-alpha.19",
"@vue/composition-api": "1.7.0",
"apollo-client": "2.6.10",
"apollo-server": "3.10.2",
"auto-bind": "4.0.0",
"babel-jest": "28.1.3",
"bob-the-bundler": "4.0.0",
"chalk": "4.1.2",
"dotenv": "16.0.2",
"eslint": "8.31.0",
"flow-bin": "0.186.0",
"flow-parser": "0.186.0",
"fs-extra": "10.1.0",
"globby": "13.1.2",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"husky": "8.0.1",
"java-ast": "0.3.0",
"jest": "28.1.3",
"jest-docblock": "28.1.1",
"jest-junit": "14.0.1",
"lint-staged": "13.0.3",
"lodash": "4.17.21",
"patch-package": "6.4.7",
"prettier": "2.7.1",
"prettier-plugin-svelte": "2.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"stencil-apollo": "0.1.6",
"svelte": "3.50.0",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.7.4",
"urql": "3.0.3",
"vue": "3.2.39",
"vue-apollo-smart-ops": "0.1.0"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{js,jsx,cjs,mjs,ts,tsx,graphql,gql,yml,yaml,json,md}": [
"prettier --write"
],
"yarn.lock": [
"npx yarn-deduplicate"
]
},
"resolutions": {
"prettier": "2.7.1",
"babel-jest": "28.1.3",
"jest-runner": "28.1.3",
"graphql": "16.6.0",
"graphql-language-service-interface": "2.10.2",
"**/apollo-language-server/graphql": "^16.0.0",
"**/@types/graphql-upload/graphql": "^16.0.0",
"ts-node": "10.9.1"
}
}