-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "@flyweightrocks/graphql-codegen-fetcher",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/flyweightrocks/graphql-codegen-fetcher.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "npx jest",
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc --watch",
"release": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
"release:beta": "npm version $(semver $npm_package_version -i prerelease --preid $(npm whoami) ) && npm publish --tag beta",
"graphql:codegen": "graphql-codegen --config codegen.yml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-codegen/plugin-helpers": "^3.1.1",
"@graphql-codegen/visitor-plugin-common": "^2.13.5",
"change-case-all": "^1.0.15",
"graphql": "^16.6.0",
"compromise": "^14.8.1"
},
"devDependencies": {
"@graphql-codegen/add": "^3.2.3",
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/operations-document": "^1.0.0-alpha-17cc8e1de.0",
"@graphql-codegen/testing": "^1.18.2",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-operations": "^2.5.10",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^29.2.4",
"@types/micromatch": "^4.0.2",
"@types/react-query": "^1.2.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"cross-fetch": "^3.1.5",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}