quote-of-the-day-api/package.json
sdlcadmin 9d60f0708c [QOTD-2] Initialise npm project and install dependencies
- npm init with express (prod) and typescript, ts-node, @types/express,
  @types/node, eslint, @typescript-eslint/parser,
  @typescript-eslint/eslint-plugin, vitest (dev)
- Add .gitignore excluding node_modules/ and dist/
- Add CLAUDE.md documenting chosen stack, commands, and project structure

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-20 15:00:16 +00:00

33 lines
761 B
JSON

{
"name": "quote-of-the-day-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://gitea-ai-sdlc.scopicdev.com/scopic-software/quote-of-the-day-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"eslint": "^10.7.0",
"ts-node": "^10.9.2",
"typescript": ">=5.0.0 <6.1.0",
"vitest": "^4.1.10"
}
}