dylanlott
10/30/2016 - 7:40 PM

package.json example for Docker tutorials

package.json example for Docker tutorials

{
  "name": "myapp",
  "version": "1.0.0",
  "description": "Docker tutorial my-app",
  "main": "hello-world.js",
  "scripts": {
    "start": "node hello-world.js"
  },
  "author": "Your Name Here",
  "license": "ISC",
  "dependencies": {
    "express": "^4.13.4"
  }
}