No scripts in package.json with Expo 24

{
  "main": "node_modules/expo/AppEntry.js",
  "private": true,
  "dependencies": {
    "expo": "^24.0.0",
    "react": "16.0.0",
    "react-native": "https://github.com/expo/react-native/archive/sdk-24.0.0.tar.gz"
  },
  "name": "expo24",
  "version": "0.0.0",
  "description": "Hello Expo!",
  "author": null
}

I dont find scripts when I init
How to run this?

package.json is a plain json file. You can edit it, add scripts yourself.

"scripts": {
  "start": "exp start"
}

React Native on init gives some pre-defined scripts
Then why not here?

Good point, I’ll double check this tomorrow.