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"
}
}