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",
|
2024-07-26 14:16:59 +02:00
|
|
|
"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-08-02 14:14:56 +02:00
|
|
|
"@coingecko/cryptoformat": "^0.8.2",
|
2024-03-30 20:50:51 +01:00
|
|
|
"@radix-ui/react-icons": "^1.3.0",
|
2024-08-02 14:14:47 +02:00
|
|
|
"next": "14.2.5",
|
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",
|
2024-09-19 22:01:39 +02:00
|
|
|
"remark-gfm": "^4.0.0",
|
2024-06-07 15:41:19 +02:00
|
|
|
"sharp": "^0.33.4",
|
2024-03-29 22:54:07 +01:00
|
|
|
"swr": "^2.2.5",
|
2024-08-02 14:15:06 +02:00
|
|
|
"use-debounce": "^10.0.2"
|
2024-03-29 12:36:05 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-26 14:16:59 +02:00
|
|
|
"@biomejs/biome": "^1.8.3",
|
|
|
|
"@kremalicious/config": "^1.0.1",
|
2024-08-02 14:15:22 +02:00
|
|
|
"@types/node": "^22",
|
2024-03-29 12:36:05 +01:00
|
|
|
"@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": {
|
2024-07-26 14:16:59 +02:00
|
|
|
"*": [
|
|
|
|
"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
|
|
|
}
|
|
|
|
}
|