asi-calculator/package.json

44 lines
1014 B
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",
2024-03-29 12:36:05 +01:00
"start": "next start",
2024-04-02 11:54:41 +02:00
"lint": "next lint",
"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": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
2024-04-02 11:54:41 +02:00
"husky": "^9.0.11",
"prettier": "^3.2.5",
2024-03-29 15:06:40 +01:00
"typescript": "^5"
2024-04-02 11:54:41 +02:00
},
"lint-staged": {
"*.{ts,mjs}": [
"prettier --write",
"eslint"
],
"**/*.{json,yml,md}": [
"prettier --write"
]
2024-03-29 12:36:05 +01:00
}
}