location/package.json
dependabot[bot] 58b7232088
Bump @types/node from 20.11.16 to 20.14.10
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.11.16 to 20.14.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-08 01:27:58 +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.14.10",
"@vercel/node": "^3.0.26",
"dotenv": "^16.4.1",
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/location"
},
"engines": {
"node": "18"
}
}