asi-calculator/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2024-03-29 12:36:05 +01:00
{
2024-03-29 22:54:07 +01:00
"name": "asi-calculator",
2024-03-29 12:36:05 +01:00
"version": "0.1.0",
"private": true,
"scripts": {
2024-04-06 15:35:49 +02:00
"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 .",
2024-04-02 11:54:41 +02:00
"typecheck": "tsc --noEmit",
"prepare": "husky"
2024-03-29 12:36:05 +01:00
},
"dependencies": {
2024-03-29 21:37:30 +01:00
"@coingecko/cryptoformat": "^0.8.1",
2024-03-30 20:50:51 +01:00
"@radix-ui/react-icons": "^1.3.0",
"next": "14.2.4",
2024-03-29 12:36:05 +01:00
"react": "^18",
"react-dom": "^18",
2024-03-30 21:56:36 +01:00
"react-markdown": "^9.0.1",
"sharp": "^0.33.4",
2024-03-29 22:54:07 +01:00
"swr": "^2.2.5",
"use-debounce": "^10.0.1"
2024-03-29 12:36:05 +01:00
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@kremalicious/config": "^1.0.1",
2024-03-29 12:36:05 +01:00
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-04-02 11:54:41 +02:00
"husky": "^9.0.11",
2024-03-29 15:06:40 +01:00
"typescript": "^5"
2024-04-02 11:54:41 +02:00
},
2024-07-26 15:17:28 +02:00
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kremalicious"
},
{
"type": "individual",
"url": "https://kremalicious.com/thanks"
}
],
2024-04-02 11:54:41 +02:00
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
2024-04-02 11:54:41 +02:00
]
2024-03-29 12:36:05 +01:00
}
}