-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "apollo-typed-documents",
"version": "2.0.1",
"description": "Get type safety for your apollo documents.",
"keywords": [
"apollo",
"graphql",
"codegen"
],
"homepage": "https://github.com/rubengrill/apollo-typed-documents",
"repository": {
"url": "https://github.com/rubengrill/apollo-typed-documents",
"type": "git"
},
"author": "Ruben Grill <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc",
"preversion": "yarn test",
"version": "yarn run build",
"postversion": "git push && git push --tags",
"test": "jest",
"lint": "eslint --ext .js,.ts src/ examples/docs/",
"generate": "yarn run build && (cd examples/cra && yarn run generate) && (cd examples/cra-ts && yarn run generate) && (cd examples/docs && yarn run generate)",
"docs": "yarn run generate && md-magic --path README.md"
},
"dependencies": {
"@graphql-codegen/visitor-plugin-common": "^1.13.3",
"pascal-case": "^3.1.1"
},
"peerDependencies": {
"graphql": "^14.6.0"
},
"devDependencies": {
"@apollo/client": "^3.4.16",
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.2.2",
"@graphql-codegen/core": "^2.3.0",
"@graphql-codegen/plugin-helpers": "^2.3.0",
"@graphql-codegen/typescript": "^2.3.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.33",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"apollo-typed-documents": "link:.",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"graphql": "^15.7.2",
"graphql-tag": "^2.12.5",
"import-sort-style-module": "^6.0.0",
"jest": "^27.3.1",
"jest-transform-graphql": "^2.1.0",
"markdown-magic": "^2.5.2",
"pascal-case": "^3.1.1",
"prettier": "^2.4.1",
"prettier-plugin-import-sort": "^0.0.7",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}