Files
react/fixtures/fiber-debugger/package.json
Sebastian Markbåge c8d4eeda5f Rename yarn start to yarn dev and yarn start:prod to yarn start (#26209)
The `start` convention is a CRA convention but nobody else of the modern
frameworks / tools use this convention for a file watcher and dev mode.
Instead the common convention is `dev`. Instead `start` is for running a
production build that's already been built.

---------

Co-authored-by: Sebastian Silbermann <silbermann.sebastian@gmail.com>
2023-02-21 14:18:21 -05:00

19 lines
365 B
JSON

{
"name": "react-fiber-debugger",
"version": "0.0.1",
"private": true,
"devDependencies": {
"react-scripts": "0.9.5"
},
"dependencies": {
"dagre": "^0.7.4",
"pretty-format": "^4.2.1",
"react-draggable": "^2.2.6",
"react-motion": "^0.5.0"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build"
}
}