vitalia/server/package.json
Naomi Carrigan eecb1b1841
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 34s
feat: project rename
2025-05-22 18:37:27 -07:00

29 lines
683 B
JSON

{
"name": "vitalia-server",
"version": "0.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 prod/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"
}
}