mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 09:23:16 +01:00
d162313f2e
Bumps [sharp](https://github.com/lovell/sharp) from 0.33.3 to 0.33.4. - [Release notes](https://github.com/lovell/sharp/releases) - [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md) - [Commits](https://github.com/lovell/sharp/compare/v0.33.3...v0.33.4) --- updated-dependencies: - dependency-name: sharp dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1014 B
JSON
44 lines
1014 B
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": "next start",
|
|
"lint": "next lint",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@coingecko/cryptoformat": "^0.8.1",
|
|
"@radix-ui/react-icons": "^1.3.0",
|
|
"next": "14.2.3",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-markdown": "^9.0.1",
|
|
"sharp": "^0.33.4",
|
|
"swr": "^2.2.5",
|
|
"use-debounce": "^10.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.2.3",
|
|
"husky": "^9.0.11",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,mjs}": [
|
|
"prettier --write",
|
|
"eslint"
|
|
],
|
|
"**/*.{json,yml,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|