vitalia/server/package.json

29 lines
685 B
JSON

{
"name": "nutrition-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts --watch",
"build": "tsc",
"start": "op run --env-file=./prod.env -- node dist/index.js",
"lint": "eslint ./src --max-warnings 0",
"test": "echo 'No tests specified' && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.10.0",
"dependencies": {
"@fastify/cors": "11.0.1",
"@nhcarrigan/logger": "1.0.0",
"fastify": "5.3.2"
},
"devDependencies": {
"@nhcarrigan/typescript-config": "4.0.0",
"tsx": "4.19.4",
"typescript": "~5.8.3"
}
}