2023-06-22 13:46:57 -07:00
|
|
|
{
|
|
|
|
"name": "website-next",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"docusaurus": "docusaurus",
|
|
|
|
"start": "docusaurus start",
|
|
|
|
"build": "docusaurus build",
|
|
|
|
"swizzle": "docusaurus swizzle",
|
|
|
|
"deploy": "docusaurus deploy",
|
|
|
|
"clear": "docusaurus clear",
|
|
|
|
"serve": "docusaurus serve",
|
|
|
|
"write-translations": "docusaurus write-translations",
|
|
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
|
|
"typecheck": "tsc"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@docusaurus/core": "2.4.1",
|
|
|
|
"@docusaurus/preset-classic": "2.4.1",
|
|
|
|
"@mdx-js/react": "^1.6.22",
|
Docusaurus: Replant Playground (#1331)
Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1331
This lifts and copies code from the Yoga Playground component of the old website, to the new one, using a live workspace version of JS Yoga. This may eventually be used if the new website is fleshed out, but this also gives us real-world validation of the Yoga bindings in a web scenario, compared to the Node test runner. There is still some cleanup here needed, but we are able to bundle, typecheck, and render the playground now.
The code here is mostly the same as before, but I removed some of the cruftier bits (e.g. URL shortener that goes to some private Heroku instance), and needed to do some tweaks for the new Yoga package, and TypeScript.
This is currently using `yoga-layout/sync`, the asmjs bindings. But I had previously checked bundling against the wasm ones.
Reviewed By: cortinico
Differential Revision: D46884439
fbshipit-source-id: f53f0855c131cd2b81975bf05f71c43713600616
2023-07-13 14:08:07 -07:00
|
|
|
"antd": "^3.6.5",
|
2023-06-22 13:46:57 -07:00
|
|
|
"clsx": "^1.2.1",
|
Docusaurus: Replant Playground (#1331)
Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1331
This lifts and copies code from the Yoga Playground component of the old website, to the new one, using a live workspace version of JS Yoga. This may eventually be used if the new website is fleshed out, but this also gives us real-world validation of the Yoga bindings in a web scenario, compared to the Node test runner. There is still some cleanup here needed, but we are able to bundle, typecheck, and render the playground now.
The code here is mostly the same as before, but I removed some of the cruftier bits (e.g. URL shortener that goes to some private Heroku instance), and needed to do some tweaks for the new Yoga package, and TypeScript.
This is currently using `yoga-layout/sync`, the asmjs bindings. But I had previously checked bundling against the wasm ones.
Reviewed By: cortinico
Differential Revision: D46884439
fbshipit-source-id: f53f0855c131cd2b81975bf05f71c43713600616
2023-07-13 14:08:07 -07:00
|
|
|
"immutable": "^4.0.0",
|
2023-06-22 13:46:57 -07:00
|
|
|
"prism-react-renderer": "^1.3.5",
|
|
|
|
"react": "^17.0.2",
|
Docusaurus: Replant Playground (#1331)
Summary:
Pull Request resolved: https://github.com/facebook/yoga/pull/1331
This lifts and copies code from the Yoga Playground component of the old website, to the new one, using a live workspace version of JS Yoga. This may eventually be used if the new website is fleshed out, but this also gives us real-world validation of the Yoga bindings in a web scenario, compared to the Node test runner. There is still some cleanup here needed, but we are able to bundle, typecheck, and render the playground now.
The code here is mostly the same as before, but I removed some of the cruftier bits (e.g. URL shortener that goes to some private Heroku instance), and needed to do some tweaks for the new Yoga package, and TypeScript.
This is currently using `yoga-layout/sync`, the asmjs bindings. But I had previously checked bundling against the wasm ones.
Reviewed By: cortinico
Differential Revision: D46884439
fbshipit-source-id: f53f0855c131cd2b81975bf05f71c43713600616
2023-07-13 14:08:07 -07:00
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-syntax-highlighter": "^8.0.0",
|
|
|
|
"yoga-layout": "^2.0.0"
|
2023-06-22 13:46:57 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@docusaurus/module-type-aliases": "2.4.1",
|
|
|
|
"@tsconfig/docusaurus": "^1.0.5",
|
|
|
|
"typescript": "^4.7.4"
|
|
|
|
},
|
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.5%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16.14"
|
|
|
|
}
|
|
|
|
}
|