Files
aws-bootstrap/package.json
2023-07-06 17:04:38 +02:00

15 lines
391 B
JSON

{
"name": "aws-bootstrap",
"version": "1.0.0",
"description": "From \"The Good Parts of AWS\"",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/pm2/bin/pm2 start ./server.js --name hello_aws --log ../logs/app.log",
"stop": "node ./node_modules/pm2/bin/pm2 stop hello_aws",
"build": "echo 'Building...'"
},
"dependencies": {
"pm2": "^3.2.2"
}
}