asi-calculator/package.json

28 lines
567 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": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-03-29 21:37:30 +01:00
"@coingecko/cryptoformat": "^0.8.1",
2024-03-29 15:06:40 +01:00
"next": "14.1.4",
2024-03-29 12:36:05 +01:00
"react": "^18",
"react-dom": "^18",
2024-03-29 22:54:07 +01:00
"swr": "^2.2.5",
"use-debounce": "^10.0.0"
2024-03-29 12:36:05 +01:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
2024-03-29 15:06:40 +01:00
"eslint-config-next": "14.1.4",
"typescript": "^5"
2024-03-29 12:36:05 +01:00
}
}