mommy/package.json
Naomi Carrigan e53db48154
All checks were successful
Node.js CI / Lint and Test (push) Successful in 41s
feat: initial prototype
2025-03-06 17:41:16 -08:00

32 lines
755 B
JSON

{
"name": "mommy",
"version": "0.0.0",
"description": "",
"main": "prod/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"lint": "eslint src test --max-warnings 0",
"start": "node prod/index.js",
"test": "rm -rf prod && vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.5.2",
"devDependencies": {
"@nhcarrigan/eslint-config": "5.2.0",
"@nhcarrigan/typescript-config": "4.0.0",
"@types/node": "22.13.9",
"@vitest/coverage-istanbul": "3.0.8",
"eslint": "9.21.0",
"string-comparison": "1.3.0",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"dependencies": {
"fastify": "5.2.1"
}
}