-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
package.json
133 lines (133 loc) · 3.79 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
133
{
"name": "gatsby-recipes",
"description": "Core functionality for Gatsby Recipes",
"version": "0.23.0-next.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/generator": "^7.14.9",
"@babel/helper-plugin-utils": "^7.14.0",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/standalone": "^7.14.9",
"@babel/template": "^7.14.0",
"@babel/types": "^7.14.9",
"@graphql-tools/schema": "^7.0.0",
"@graphql-tools/utils": "^7.0.2",
"@hapi/hoek": "8.x.x",
"@hapi/joi": "^15.1.1",
"better-queue": "^3.8.10",
"chokidar": "^3.4.2",
"contentful-management": "^7.5.1",
"cors": "^2.8.5",
"debug": "^4.3.1",
"detect-port": "^1.3.0",
"dotenv": "^8.2.0",
"execa": "^5.1.1",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"fs-extra": "^8.1.0",
"gatsby-core-utils": "^2.12.0-next.0",
"gatsby-telemetry": "^2.12.0-next.0",
"glob": "^7.1.6",
"graphql": "^15.4.0",
"graphql-compose": "~7.25.0",
"graphql-subscriptions": "^1.1.0",
"graphql-type-json": "^0.3.2",
"hicat": "^0.8.0",
"is-binary-path": "^2.1.0",
"is-url": "^1.2.4",
"jest-diff": "^25.5.0",
"lock": "^1.0.0",
"lodash": "^4.17.21",
"mitt": "^1.2.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.5.0",
"pkg-dir": "^4.2.0",
"prettier": "^2.3.2",
"prop-types": "^15.6.1",
"remark-mdx": "^2.0.0-next.4",
"remark-mdxjs": "^2.0.0-next.4",
"remark-parse": "^6.0.3",
"remark-stringify": "^8.1.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.2",
"single-trailing-newline": "^1.0.0",
"strip-ansi": "^6.0.0",
"style-to-object": "^0.3.0",
"unified": "^8.4.2",
"unist-util-remove": "^2.0.0",
"unist-util-visit": "^2.0.2",
"uuid": "3.4.0",
"ws": "^7.3.0",
"xstate": "^4.9.1",
"yoga-layout-prebuilt": "^1.9.6"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@mdx-js/mdx": "^2.0.0-next.4",
"@mdx-js/react": "^2.0.0-next.4",
"@mdx-js/runtime": "^2.0.0-next.4",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"fetch-mock-jest": "^1.3.0",
"ink": "^3.0.8",
"ink-select-input": "^4.2.0",
"ink-spinner": "^4.0.1",
"react": "^16.12.0",
"react-reconciler": "^0.25.1",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-internal": "^1.0.0",
"subscriptions-transport-ws": "^0.9.16",
"terminal-link": "^2.0.0",
"tmp-promise": "^2.1.0",
"urql": "^1.9.7"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-recipes#readme",
"jest": {
"testPathIgnorePatterns": [
"/.cache/",
"dist"
],
"testEnvironment": "node"
},
"keywords": [
"gatsby",
"gatsby-recipes",
"mdx"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-recipes"
},
"resolutions": {
"@mdx-js/mdx": "^2.0.0-next.4",
"@mdx-js/react": "^2.0.0-next.4",
"@mdx-js/runtime": "^2.0.0-next.4",
"graphql": "^15.5.1",
"property-information": "5.5.0",
"remark-mdx": "^2.0.0-next.4",
"remark-mdxjs": "^2.0.0-next.4"
},
"scripts": {
"build": "rollup -c",
"prebuild": "rimraf dist",
"prepare": "npm run build",
"prewatch": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"watch": "rollup -c -w"
}
}