asi-calculator/package.json
dependabot[bot] 067f3810ea
Bump next from 14.2.12 to 15.0.2
Bumps [next](https://github.com/vercel/next.js) from 14.2.12 to 15.0.2.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v14.2.12...v15.0.2)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-01 12:57:44 +00:00

50 lines
1.2 KiB
JSON

{
"name": "asi-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next dev",
"build": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next build",
"start": "export GIT_COMMIT_SHA=$(git rev-parse HEAD) && next start",
"lint": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@coingecko/cryptoformat": "^0.8.2",
"@radix-ui/react-icons": "^1.3.0",
"next": "15.0.2",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.5",
"swr": "^2.2.5",
"use-debounce": "^10.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@kremalicious/config": "^1.0.2",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"husky": "^9.1.6",
"typescript": "^5"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kremalicious"
},
{
"type": "individual",
"url": "https://kremalicious.com/thanks"
}
],
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}