Files
Node.js-14-Cookbook/Chapter11/fastify-microservice/package.json
T
2020-07-20 01:59:08 +01:00

26 lines
539 B
JSON

{
"name": "fastify-microservice",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/**/*.test.js",
"start": "fastify start -l info app.js",
"dev": "fastify start -w -l info -P app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fastify": "^3.0.0",
"fastify-plugin": "^2.0.0",
"fastify-autoload": "^3.0.2",
"fastify-cli": "^2.0.2"
},
"devDependencies": {
"tap": "^14.0.0"
}
}