You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
{
|
|
"name": "@abacus-network/explorer-app",
|
|
"description": "A multi-chain explorer app for the Abacus protocol and network.",
|
|
"version": "0.1.0",
|
|
"author": "J M Rossy",
|
|
"dependencies": {
|
|
"@abacus-network/sdk": "^0.4.1",
|
|
"@metamask/jazzicon": "https://github.com/jmrossy/jazzicon#7a8df28974b4e81129bfbe3cab76308b889032a6",
|
|
"@rainbow-me/rainbowkit": "^0.4.5",
|
|
"ethers": "^5.6.8",
|
|
"formik": "^2.2.9",
|
|
"next": "^12.2.2",
|
|
"react": "^18.2.0",
|
|
"react-accessible-dropdown-menu-hook": "^3.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-toastify": "^9.0.5",
|
|
"wagmi": "^0.5.11"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
|
|
"@types/node": "18.0.4",
|
|
"@types/react": "18.0.15",
|
|
"@types/react-dom": "18.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
"@typescript-eslint/parser": "^5.27.0",
|
|
"autoprefixer": "^10.4.7",
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-next": "^12.2.2",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"postcss": "^8.4.14",
|
|
"prettier": "^2.4.1",
|
|
"tailwindcss": "^3.1.6",
|
|
"ts-node": "^10.8.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"homepage": "https://www.useabacus.network",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/src/index.js",
|
|
"packageManager": "yarn@3.2.0",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/abacus-network/abacus-explorer-app"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf dist cache .next",
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"typecheck": "tsc",
|
|
"lint": "next lint",
|
|
"start": "next start",
|
|
"prettier": "prettier --write ./src"
|
|
},
|
|
"types": "dist/src/index.d.ts"
|
|
}
|
|
|