Files
explorer.fullstack.cash/package.json
T
Daniel show b8631d7b98 Add start script to package.json (#22)
Most people tend to look for a start script in package.json, Added a start script to run the develop script already stated
2018-10-27 12:55:01 -07:00

17 lines
352 B
JSON

{
"name": "gatsby-starter-hello-world",
"description": "Gatsby hello world starter",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve"
},
"dependencies": {
"gatsby": "^2.0.0",
"react": "^16.5.1",
"react-dom": "^16.5.1"
}
}