b5c097d661
* upgrade to next 13 * WIP: adjust to app dir * add docker + wallet connector * fix: update the wallet connect component * tidy: format * wip: make the wallet balance fetcher work * fix balance retrieval * MP-2258: added estimateFee hook (#94) * Mp 2259 queries to api (#96) * update next config for build errors * Convert queries to API + remove config * tidy: save some bytes by adding constants/env.ts * tidy: added URL_ prefix to REST, RPC and GQL --------- Co-authored-by: Linkie Link <linkielink.dev@gmail.com> * MP-2261: created useBroadcast hook for transactions (#95) * tidy: remove unneeded wallet images * Mp 2264 convert store (#97) * Merge stores into 1 * refactor codebase to use new store * fiex build and rename whitelisted to marketassets * tidy: import refactor * updated account navigation basics * feat: added loading component and fixed the disconnect button * fix: format * update new routing system * update config and dependencies * feat: create and delete credit account are restored * tidy: format * fix: fixed the deployment * update route structure (#98) * fix: creditAccountDeposit works again * fix: bugfixes * add apis, remove allowedCoins, get basic borrow tables (#99) Co-authored-by: bwvdhelm <34470358+bobthebuidlr@users.noreply.github.com> --------- Co-authored-by: bwvdhelm <34470358+bobthebuidlr@users.noreply.github.com>
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "mars-v2-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"dev": "next dev",
|
|
"lint": "eslint ./src/ && yarn prettier-check",
|
|
"index": "vscode-generate-index-standalone src/",
|
|
"format": "yarn index && eslint ./src/ --fix && prettier --write ./src/",
|
|
"prettier-check": "prettier --ignore-path .gitignore --check ./src/",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/cosmwasm-stargate": "^0.29.4",
|
|
"@cosmjs/stargate": "^0.29.5",
|
|
"@headlessui/react": "^1.7.0",
|
|
"@marsprotocol/wallet-connector": "^1.4.2",
|
|
"@radix-ui/react-slider": "^1.0.0",
|
|
"@sentry/nextjs": "^7.12.1",
|
|
"@tanstack/react-query": "^4.3.4",
|
|
"@tanstack/react-query-devtools": "^4.12.0",
|
|
"@tanstack/react-table": "^8.5.15",
|
|
"@tippyjs/react": "^4.2.6",
|
|
"bech32": "^2.0.0",
|
|
"bignumber.js": "^9.1.0",
|
|
"classnames": "^2.3.2",
|
|
"ethereumjs-util": "^7.1.5",
|
|
"graphql": "^16.6.0",
|
|
"graphql-request": "^5.0.0",
|
|
"moment": "^2.29.4",
|
|
"next": "^13.1.6",
|
|
"react": "^18.2.0",
|
|
"react-device-detect": "^2.2.3",
|
|
"react-dom": "^18.2.0",
|
|
"react-number-format": "^5.1.0",
|
|
"react-spring": "^9.5.5",
|
|
"react-toastify": "^9.0.8",
|
|
"react-use-clipboard": "^1.0.9",
|
|
"recharts": "^2.2.0",
|
|
"swr": "^2.0.3",
|
|
"tailwindcss-border-gradient-radius": "^3.0.1",
|
|
"use-local-storage-state": "^18.1.1",
|
|
"zustand": "^4.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/webpack": "^6.4.0",
|
|
"@types/node": "^18.11.13",
|
|
"@types/react": "18.0.26",
|
|
"@types/react-dom": "18.0.9",
|
|
"autoprefixer": "^10.4.13",
|
|
"eslint": "8.30.0",
|
|
"eslint-config-next": "^13.1.6",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"postcss": "^8.4.16",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-tailwindcss": "^0.1.13",
|
|
"tailwindcss": "^3.2.1",
|
|
"typescript": "4.9.4"
|
|
},
|
|
"resolutions": {
|
|
"@types/react": "18.0.26",
|
|
"@types/react-dom": "18.0.9"
|
|
}
|
|
}
|