mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
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>
19 lines
365 B
JSON
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"
|
|
}
|
|
}
|