Files
devops-directive-docker-course/04-building-container-images/sample-app/api-node/package.json
2023-01-23 10:48:02 -05:00

16 lines
314 B
JSON

{
"name": "api-node",
"version": "1.0.0",
"description": "simple api that connects to postgres",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"pg": "^8.8.0"
}
}