|
12 | 12 | "build": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=4096\" node scripts/build.js", |
13 | 13 | "build:stats": "cross-env NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=4096\" webpack --env production --config config/webpack.prod.js --json --profile --progress > stats.json && node scripts/stats", |
14 | 14 | "build:clean": "rimraf www", |
| 15 | + "graphql:replace-schema": "sed -i'' 's/RootQueryType/RootQuery/g' ./src/app/graphql/schema.graphql && sed -i'' 's/RootMutationType/RootMutation/g' ./src/app/graphql/schema.graphql", |
| 16 | + "generate:graphql": "graphql get-schema --project app && yarn graphql:replace-schema && graphql-codegen --config ./scripts/codegen.js", |
| 17 | + "generate:graphql:staging": "graphql get-schema -e staging --project app && yarn graphql:replace-schema && graphql-codegen --config ./scripts/codegen.js --staging", |
15 | 18 | "build:embed": "cross-env NODE_ENV=production webpack --config config/webpack.embed.js", |
16 | 19 | "build:sandbox": "cross-env NODE_ENV=production SANDBOX_ONLY=true node scripts/build.js && yarn copy-assets", |
17 | 20 | "build:sandpack-sandbox": "cross-env NODE_ENV=production SANDPACK=true SANDBOX_ONLY=true node scripts/build.js && cross-env SANDBOX_ONLY=true yarn copy-assets", |
|
67 | 70 | ] |
68 | 71 | }, |
69 | 72 | "dependencies": { |
70 | | - "@apollo/react-hooks": "^0.1.0-beta.2", |
| 73 | + "@apollo/react-hooks": "^3.0.1", |
71 | 74 | "@babel/plugin-transform-destructuring": "^7.5.0", |
72 | 75 | "@babel/preset-env": "^7.5.5", |
73 | 76 | "@codesandbox/executors": "^0.1.0", |
74 | | - "@codesandbox/template-icons": "^1.0.1", |
| 77 | + "@codesandbox/template-icons": "^1.0.2", |
75 | 78 | "@emmetio/codemirror-plugin": "^0.3.5", |
76 | 79 | "@sentry/webpack-plugin": "^1.8.0", |
77 | 80 | "@styled-system/css": "^5.0.23", |
|
117 | 120 | "fuse.js": "^3.2.1", |
118 | 121 | "geniejs": "^0.5.1", |
119 | 122 | "glamor": "^2.20.25", |
120 | | - "graphql": "^14.1.1", |
| 123 | + "graphql": "^14.5.8", |
121 | 124 | "graphql-tag": "^2.10.1", |
122 | 125 | "gsap": "^1.20.3", |
123 | 126 | "gulp": "^3.9.1", |
|
143 | 146 | "lodash-es": "^4.17.2", |
144 | 147 | "lru-cache": "^4.1.3", |
145 | 148 | "match-sorter": "^1.8.1", |
146 | | - "memoize-one": "^4.0.0", |
147 | 149 | "minimatch": "^3.0.4", |
148 | 150 | "mobx": "^5.11.0", |
149 | 151 | "mobx-react": "^6.1.1", |
|
173 | 175 | "react-addons-css-transition-group": "^15.6.0", |
174 | 176 | "react-apollo": "^2.5.6", |
175 | 177 | "react-color": "^2.17.3", |
| 178 | + "react-content-loader": "^4.2.2", |
176 | 179 | "react-day-picker": "^7.2.4", |
177 | 180 | "react-devtools-inline": "^4.0.0", |
178 | 181 | "react-dnd": "^7.0.2", |
|
183 | 186 | "react-icons": "^2.2.7", |
184 | 187 | "react-input-autosize": "^2.2.1", |
185 | 188 | "react-inspector": "^2.2.0", |
186 | | - "react-instantsearch": "^5.3.2", |
| 189 | + "react-instantsearch": "^5.7.0", |
187 | 190 | "react-loadable": "^3.3.1", |
188 | 191 | "react-media": "^1.9.2", |
189 | 192 | "react-modal": "^3.6.1", |
|
236 | 239 | "@types/codemirror": "^0.0.72", |
237 | 240 | "@types/debug": "^4.1.1", |
238 | 241 | "@types/gsap": "^1.20.1", |
| 242 | + "@types/jest": "24.0.13", |
239 | 243 | "@types/lodash-es": "^4.17.2", |
240 | 244 | "@types/phoenix": "^1.4.0", |
241 | 245 | "@types/prop-types": "^15.7.0", |
242 | 246 | "@types/react": "^16.8.12", |
243 | 247 | "@types/react-dom": "^16.8.3", |
244 | 248 | "@types/react-helmet": "^5.0.11", |
245 | 249 | "@types/react-icons": "2.2.7", |
| 250 | + "@types/react-instantsearch": "^5.2.3", |
246 | 251 | "@types/react-router-dom": "^4.3.1", |
247 | 252 | "@types/react-stripe-elements": "^1.3.2", |
248 | 253 | "@types/resolve": "^0.0.8", |
|
261 | 266 | "buffer-loader": "^0.0.1", |
262 | 267 | "case-sensitive-paths-webpack-plugin": "^2.0.0", |
263 | 268 | "chalk": "1.1.3", |
| 269 | + "codesandbox": "^2.1.10", |
264 | 270 | "codesandbox-deps": "^0.1.1", |
265 | 271 | "connect-history-api-fallback": "1.3.0", |
266 | 272 | "copy-webpack-plugin": "^5.0.3", |
|
273 | 279 | "file-loader": "^1.1.11", |
274 | 280 | "filesize": "^3.5.6", |
275 | 281 | "fs-extra": "^8.0.1", |
| 282 | + "graphql-cli": "^3.0.14", |
276 | 283 | "gulp-replace": "^0.5.4", |
277 | 284 | "gzip-size": "3.0.0", |
278 | 285 | "html-loader": "^0.5.5", |
279 | 286 | "html-webpack-plugin": "^4.0.0-beta.1", |
280 | 287 | "http-proxy-middleware": "^0.17.3", |
281 | 288 | "imagemin-webpack-plugin": "^2.4.2", |
282 | | - "jest": "^24.8.0", |
| 289 | + "jest": "^24.9.0", |
283 | 290 | "jest-image-snapshot": "^1.0.1", |
284 | 291 | "jest-junit": "^3.4.1", |
285 | | - "jest-styled-components": "6.3.3", |
| 292 | + "jest-styled-components": "6.3.4", |
286 | 293 | "mini-css-extract-plugin": "^0.8.0", |
287 | 294 | "object-assign": "^4.1.1", |
288 | 295 | "opn": "4.0.2", |
|
0 commit comments