fastify-template/package.json

23 lines
549 B
JSON

{
"name": "fastify-template",
"version": "1.0.0",
"description": "a basic fastify template using @fastify/autoload",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --watch src --exec \"npm run build && npm run start\""
},
"repository": {
"type": "git",
"url": "https://code.cat.casa/1/fastify-template.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.6.0",
"@types/node": "^18.11.10",
"fastify": "^4.10.2"
}
}