fastify-ts-template/package.json

25 lines
534 B
JSON
Raw Permalink Normal View History

2024-05-11 10:38:18 +02:00
{
"name": "fastify-ts-template",
"license": "GPL-3.0-only",
"author": "blek! <me@blek.codes>",
"type": "module",
"main": "dist/index.js",
"dependencies": {
"fastify": "^4.27.0",
"typescript-eslint": "^7.8.0"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.12.11",
"esbuild": "^0.21.1",
"eslint": "^9.2.0",
"prettier": "3.2.5",
"typescript": "^5.4.5"
},
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint",
"format": "prettier"
}
}