location/package.json
dependabot[bot] 3b08fabae2
Bump eslint from 9.0.0 to 9.6.0
Bumps [eslint](https://github.com/eslint/eslint) from 9.0.0 to 9.6.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.0.0...v9.6.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-01 01:48:04 +00:00

30 lines
797 B
JSON

{
"name": "@kremalicious/location",
"description": "Microservice API endpoint to fetch and expose my location.",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://matthiaskretschmann.com",
"scripts": {
"start": "vercel dev",
"test": "npm run type-check",
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
"type-check": "tsc --noEmit",
"get-checkins": "node ./scripts/get-checkins.mjs"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@vercel/node": "^3.0.26",
"dotenv": "^16.4.1",
"eslint": "^9.6.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/location"
},
"engines": {
"node": "18"
}
}