| 1 | { |
| 2 | "name": "playground", |
| 3 | "version": "0.1.0", |
| 4 | "private": true, |
| 5 | "scripts": { |
| 6 | "dev": "cd ../.. && concurrently --kill-others -n compiler,runtime,playground \"yarn workspace babel-plugin-react-compiler run watch\" \"yarn workspace react-compiler-runtime run watch\" \"wait-on packages/babel-plugin-react-compiler/dist/index.js && cd apps/playground && NODE_ENV=development next dev\"", |
| 7 | "build:compiler": "cd ../.. && concurrently -n compiler,runtime \"yarn workspace babel-plugin-react-compiler run build --dts\" \"yarn workspace react-compiler-runtime run build\"", |
| 8 | "build": "yarn build:compiler && next build", |
| 9 | "postbuild": "node ./scripts/downloadFonts.js", |
| 10 | "preinstall": "cd ../.. && yarn install --frozen-lockfile", |
| 11 | "postinstall": "./scripts/link-compiler.sh", |
| 12 | "vercel-build": "yarn build", |
| 13 | "start": "next start", |
| 14 | "lint": "next lint", |
| 15 | "test": "playwright test --workers=4" |
| 16 | }, |
| 17 | "dependencies": { |
| 18 | "@babel/core": "^7.18.9", |
| 19 | "@babel/generator": "^7.18.9", |
| 20 | "@babel/parser": "^7.18.9", |
| 21 | "@babel/plugin-syntax-typescript": "^7.18.9", |
| 22 | "@babel/plugin-transform-block-scoping": "^7.18.9", |
| 23 | "@babel/plugin-transform-modules-commonjs": "^7.18.9", |
| 24 | "@babel/preset-react": "^7.18.9", |
| 25 | "@babel/preset-typescript": "^7.26.0", |
| 26 | "@babel/traverse": "^7.18.9", |
| 27 | "@babel/types": "7.26.3", |
| 28 | "@heroicons/react": "^1.0.6", |
| 29 | "@monaco-editor/react": "^4.8.0-rc.2", |
| 30 | "@playwright/test": "^1.56.1", |
| 31 | "@use-gesture/react": "^10.2.22", |
| 32 | "hermes-eslint": "^0.25.0", |
| 33 | "hermes-parser": "^0.25.0", |
| 34 | "invariant": "^2.2.4", |
| 35 | "json5": "^2.2.3", |
| 36 | "lru-cache": "^11.2.2", |
| 37 | "lz-string": "^1.5.0", |
| 38 | "monaco-editor": "^0.52.0", |
| 39 | "next": "15.5.9", |
| 40 | "notistack": "^3.0.0-alpha.7", |
| 41 | "prettier": "^3.3.3", |
| 42 | "pretty-format": "^29.3.1", |
| 43 | "re-resizable": "^6.9.16", |
| 44 | "react": "19.2.3", |
| 45 | "react-dom": "19.2.3" |
| 46 | }, |
| 47 | "devDependencies": { |
| 48 | "@types/node": "18.11.9", |
| 49 | "@types/react": "19.2", |
| 50 | "@types/react-dom": "19.2", |
| 51 | "autoprefixer": "^10.4.13", |
| 52 | "clsx": "^1.2.1", |
| 53 | "concurrently": "^7.4.0", |
| 54 | "eslint": "^8.28.0", |
| 55 | "eslint-config-next": "15.5.2", |
| 56 | "monaco-editor-webpack-plugin": "^7.1.0", |
| 57 | "postcss": "^8.4.31", |
| 58 | "tailwindcss": "^3.2.4", |
| 59 | "wait-on": "^7.2.0" |
| 60 | }, |
| 61 | "resolutions": { |
| 62 | "@types/react": "19.2", |
| 63 | "@types/react-dom": "19.2" |
| 64 | } |
| 65 | } |