mirror of
https://github.com/facebook/react.git
synced 2026-02-27 03:07:57 +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>
21 lines
548 B
JSON
21 lines
548 B
JSON
{
|
|
"name": "cpu-demo",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"glamor": "^2.20.40",
|
|
"react": "0.0.0-experimental-269dd6ec5",
|
|
"react-dom": "0.0.0-experimental-269dd6ec5",
|
|
"react-markdown": "^3.2.0",
|
|
"react-scripts": "^1.1.4",
|
|
"victory": "^0.25.6"
|
|
},
|
|
"scripts": {
|
|
"copy-source": "cp -r ../../../build/oss-experimental/* ./node_modules/",
|
|
"dev": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject"
|
|
}
|
|
}
|