Files
data/package.json
T
minori 482e08e208
Node.js CI / CI (pull_request) Failing after 32s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m19s
deps: update fastify to 5.7.4
2026-02-13 07:08:53 -08:00

39 lines
1.1 KiB
JSON

{
"name": "data-server",
"version": "1.0.0",
"description": "A quick web server to host the various data our sites consume.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node build.js && tsc",
"lint:ts": "eslint src test --max-warnings 0",
"lint:spelling": "cspell data/*.yml",
"lint:yaml": "yaml-validator data/*.yml",
"lint": "npm-run-all --parallel lint:*",
"spelling": "cspell src/source.yaml",
"start": "op run --env-file ./prod.env -- node ./prod/index.js",
"test": "vitest --run"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.17.0",
"dependencies": {
"@fastify/cors": "11.1.0",
"@nhcarrigan/logger": "1.0.0",
"fastify": "5.7.4"
},
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "24.5.2",
"cspell": "9.2.1",
"eslint": "9.36.0",
"npm-run-all": "4.1.5",
"typescript": "5.9.2",
"vitest": "3.2.4",
"yaml": "2.8.1",
"yaml-validator": "5.1.0"
}
}