fastify-min/package.json
2024-11-09 08:10:29 -06:00

22 lines
520 B
JSON

{
"name": "fastify-min",
"version": "1.0.0",
"type": "module",
"description": "Barebones fastify app to serve static content",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --env-file=.env index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.10.0",
"@fastify/static": "^7.0.4",
"fastify": "^4.28.1",
"fastify-healthcheck": "^4.4.0",
"ioredis": "^5.4.1",
"pg": "^8.12.0"
}
}