Files
react/compiler/forget/packages/playground/package.json
T
Robert Zhang 2c37aa78d3 [Playground] Style compiler options editor
This diff adds styling to the compiler options editor. The floating input/output 
toggle button on small screens now spans the bottom of the screen, so that it 
doesn't block the compiler options. 

Height overflows when adjusting screen size are complicated by Monaco Editor and 
will be addressed in a later diff. 

Test plan: 

Start Playground and see the latest look of the compiler options editor beneath 
the output section.
2022-10-23 18:33:39 -04:00

58 lines
1.5 KiB
JSON

{
"name": "playground",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "./scripts/setup.sh",
"dev": "next dev",
"build": "next build && node ./scripts/downloadFonts.js",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@babel/standalone": "^7.18.4",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@heroicons/react": "^1.0.6",
"@hpcc-js/wasm": "^1.15.0",
"@monaco-editor/react": "^4.4.5",
"@mui/material": "^5.9.1",
"@use-gesture/react": "^10.2.20",
"fflate": "^0.7.3",
"hermes-eslint": "^0.9.0",
"invariant": "^2.2.4",
"monaco-editor": "^0.33.0",
"next": "12.1.6",
"notistack": "^3.0.0-alpha.7",
"prettier": "^2.6.2",
"pretty-bytes": "^6.0.0",
"pretty-format": "^28.1.3",
"react": "18.1.0",
"react-dom": "18.1.0",
"rollup": "^2.75.7",
"terser": "^5.14.2"
},
"devDependencies": {
"@types/babel__standalone": "^7.1.4",
"@types/node": "17.0.40",
"@types/prettier": "^2.6.3",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"clsx": "^1.1.1",
"eslint": "^8.25.0",
"eslint-config-next": "12.1.6",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24",
"typescript": "4.7.3"
},
"resolutions": {
"./**/@babel/parser": "7.7.4",
"./**/@babel/types": "7.7.4",
"@babel/core": "7.2.0",
"@babel/generator": "7.2.0",
"@babel/traverse": "7.1.6"
}
}