auto-complete/package.json

21 lines
494 B
JSON
Raw Normal View History

2024-11-16 02:02:11 +00:00
{
"name": "auto-complete",
"version": "1.0.0",
"type": "module",
"description": "Simple auto complete suggestions example. ",
"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",
"pg": "^8.12.0"
}
}