backups/package.json

27 lines
692 B
JSON
Raw Normal View History

2024-05-11 11:46:23 +02:00
{
"name": "fastify-ts-template",
"license": "GPL-3.0-only",
"author": "blek! <me@blek.codes>",
"type": "module",
"main": "dist/index.js",
"dependencies": {
"ajv": "^8.13.0",
"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": {
"start": "yarn build && node dist/index.js",
"build": "yarn lint && node scripts/build.js",
"lint": "eslint",
"format": "prettier"
}
}