diff --git a/react-native-cli/index.js b/react-native-cli/index.js index f843cf99e..4bfd6e735 100755 --- a/react-native-cli/index.js +++ b/react-native-cli/index.js @@ -159,7 +159,10 @@ function createProject(name, verbose) { var packageJson = { name: projectName, version: '0.0.1', - private: true + private: true, + scripts: { + start: 'react-native start' + } }; fs.writeFileSync(path.join(root, 'package.json'), JSON.stringify(packageJson)); process.chdir(root);