generated from nhcarrigan/template
39 lines
1.1 KiB
JSON
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.2.0",
|
|
"@nhcarrigan/logger": "1.0.0",
|
|
"fastify": "5.6.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|