lucinda/server/package.json
Naomi Carrigan e235d50112
Some checks failed
Node.js CI / Lint and Test (push) Failing after 50s
Code Analysis / SonarQube (push) Failing after 1m9s
fix: missed some saves
2025-05-22 19:11:10 -07:00

29 lines
683 B
JSON

{
"name": "lucinda-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"
}
}