-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 2.68 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
{
"name": "gatsby-plugin-typegen",
"description": "Gatsby plugin to play with extream type-safety",
"version": "3.1.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Hyeseong Kim",
"email": "[email protected]",
"url": "https://github.com/cometkim"
},
"homepage": "https://www.gatsbyjs.org/packages/gatsby-plugin-typegen/",
"repository": {
"type": "git",
"url": "git+https://github.com/cometkim/gatsby-plugin-typegen.git"
},
"bugs": {
"url": "https://github.com/cometkim/gatsby-plugin-typegen/issues",
"email": "[email protected]"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"graphql",
"codegen",
"typescript",
"flow"
],
"scripts": {
"test": "jest",
"codegen": "xstate typegen src/internal/machine.ts",
"build": "concurrently \"yarn:build:*\"",
"build:js": "babel src -d . --extensions .ts,.tsx",
"build:dts": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"build:flow": "babel src/types.flow.js -d . --plugins module:@babel/plugin-transform-flow-comments",
"develop": "babel src -d . --extensions .ts,.tsx --watch",
"prepack": "yarn build"
},
"files": [
"index.js",
"gatsby-node.js",
"types.js",
"types.d.ts",
"types.js.flow",
"utils.js",
"internal",
"services"
],
"peerDependencies": {
"gatsby": "^4.0.0 || ^5.0.0",
"graphql": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/core": "^2.5.1",
"@graphql-codegen/flow": "^2.2.13",
"@graphql-codegen/flow-operations": "^2.2.13",
"@graphql-codegen/flow-resolvers": "^2.2.14",
"@graphql-codegen/plugin-helpers": "^2.4.2",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@graphql-codegen/typescript-resolvers": "^2.6.6",
"@graphql-codegen/visitor-plugin-common": "^2.9.1",
"@graphql-tools/utils": "^8.6.13",
"lodash": "^4.17.21",
"slugify": "^1.6.5",
"xstate": "^4.32.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/plugin-transform-flow-comments": "^7.17.12",
"@babel/plugin-transform-typescript": "^7.18.4",
"@babel/runtime": "^7.18.3",
"@types/common-tags": "^1.8.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.1",
"@types/jest-when": "^3.5.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.42",
"@xstate/cli": "^0.2.1",
"babel-preset-gatsby-package": "^2.16.0",
"common-tags": "^1.8.2",
"concurrently": "^7.2.1",
"gatsby": "^5.0.1",
"graphql": "^16.6.0",
"jest": "^28.1.1",
"jest-when": "^3.5.1",
"typescript": "^4.7.3"
}
}